Path Parameters
Response
OK
curl --request GET \
--url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/keys
{
"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
{
"keys": [
{
"id": "<string>",
"name": "Organisation Public Key 1",
"publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvZgZz...==\n-----END PUBLIC KEY-----",
"createdAt": "2023-01-01T12:00:00Z"
}
]
}