curl --request GET \
--url https://platform.versori.com/api/organisations/v1/keys/{id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"name": "Organisation Public Key 1",
"publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvZgZz...==\n-----END PUBLIC KEY-----",
"createdAt": "2023-01-01T12:00:00Z"
}GetPublicKey returns the public key for the given Signing Key ID. This can be used to verify JWTs signed by an Organisation’s Signing Key.
curl --request GET \
--url https://platform.versori.com/api/organisations/v1/keys/{id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"name": "Organisation Public Key 1",
"publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvZgZz...==\n-----END PUBLIC KEY-----",
"createdAt": "2023-01-01T12:00:00Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK
Unique identifier for the public key.
Name of the public key.
"Organisation Public Key 1"
The public key in PEM format.
"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvZgZz...==\n-----END PUBLIC KEY-----"
Timestamp when the public key was created.
"2023-01-01T12:00:00Z"