read:org
scope can list all credential authorizations for an organization that uses SAML single sign-on (SSO). The credentials are either personal access tokens or SSH keys that organization members have authorized for the organization. For more information, see About authentication with SAML single sign-on.curl --location --request GET 'https://api.github.com/orgs//credential-authorizations'
[
{
"authorized_credential_id": 12345678,
"authorized_credential_note": "my token",
"authorized_credential_title": "my ssh key",
"credential_accessed_at": "2011-01-26T19:06:43Z",
"credential_authorized_at": "2011-01-26T19:06:43Z",
"credential_id": 1,
"credential_type": "SSH Key",
"fingerprint": "jklmnop12345678",
"login": "monalisa",
"scopes": [
"user",
"repo"
],
"token_last_eight": "12345678"
}
]