v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
KeySets

Upsert a KeySet

Create or Update KeySet using ID or name.

put/v2/control-planes/{controlPlaneId}/core-entities/key-sets/{KeySetId}

Request body

created_atinteger nullable

Unix epoch when the resource was created.

idstring nullable

A string representing a UUID (universally unique identifier).

namestring nullable

The name to associate with the given key-set.

tagsstring[] nullable

A set of strings representing tags.

updated_atinteger nullable

Unix epoch when the resource was last updated.

Example request

{
  "id": "b58c7d9d-e54f-444c-b24d-cdfc4159f61e",
  "name": "example-key-set",
  "tags": [
    "idp-keys"
  ]
}

Response

Successfully upserted KeySet

created_atinteger nullable

Unix epoch when the resource was created.

idstring nullable

A string representing a UUID (universally unique identifier).

namestring nullable

The name to associate with the given key-set.

tagsstring[] nullable

A set of strings representing tags.

updated_atinteger nullable

Unix epoch when the resource was last updated.

Example response

{
  "id": "b58c7d9d-e54f-444c-b24d-cdfc4159f61e",
  "name": "example-key-set",
  "tags": [
    "idp-keys"
  ]
}