Skip to main content
POST
/
organisations
/
{organisation_id}
/
keys
Create Signing Key
curl --request POST \
  --url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/keys \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "id": "<string>",
  "name": "Organisation Public Key 1",
  "publicKey": "<string>",
  "privateKey": "<string>",
  "createdAt": "2023-01-01T12:00:00Z"
}

Path Parameters

organisation_id
string
required

Body

application/json
name
string
required

Name of the public key.

Response

OK

id
string<ulid>
required

Unique identifier for the public key.

name
string
required

Name of the public key.

Example:

"Organisation Public Key 1"

publicKey
string
required

The public key in PEM format.

privateKey
string
required

The private key in PEM format.

createdAt
string<date-time>
required

Timestamp when the public key was created.

Example:

"2023-01-01T12:00:00Z"

I