Setup Keys

Create

Create a new Setup Keys record.

post/api/cp/setup/key

Request body

idstring

Id

user_idinteger required

User Id (references user.id)

namestring required

Name

public_keystring required

Public Key

Example request

{
  "id": 12345,
  "user_id": 1,
  "name": "Example Name",
  "public_key": "example_public_key"
}

Response

Successful response

statusstring

Operation status

Example response

{
  "id": 12345,
  "status": "OK"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.