List the Service Provider signing keys of the given SAML SSO connector. The response contains the certificate, fingerprints, activation state and expiry of each key — the private key is never returned.
GET
/api/sso-connectors/{id}/signing-keys
curl \
--request GET 'https://[tenant_id].logto.app/api/sso-connectors/{id}/signing-keys' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": "string",
"certificate": "string",
"createdAt": 42.0,
"expiresAt": 42.0,
"active": true,
"fingerprints": {
"sha256": {
"formatted": "string",
"unformatted": "string"
}
}
}
]