curl --request GET \
--url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/keys \
--header 'Authorization: Bearer <token>'{
"keys": [
{
"id": "<string>",
"name": "Organisation Public Key 1",
"publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvZgZz...==\n-----END PUBLIC KEY-----",
"createdAt": "2023-01-01T12:00:00Z"
}
]
}ListSigningKeys returns a list of all Signing Keys for the Organisation.
curl --request GET \
--url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/keys \
--header 'Authorization: Bearer <token>'{
"keys": [
{
"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
Show child attributes
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"