Skip to content
Get started

Create a circle API key

POST/api/circles/{id}/api-keys

Creates a new racks_circle_… API key for the circle. Caller must be the owner or an admin. The full key is returned once.

Path ParametersExpand Collapse
id: string
Body ParametersJSONExpand Collapse
name: optional string
maxLength64
ReturnsExpand Collapse
id: optional string
key: optional string

Full racks_circle_… token — store it now

Create a circle API key

curl https://racks.cash/api/circles/$ID/api-keys \
    -X POST
{
  "id": "id",
  "key": "key"
}
Returns Examples
{
  "id": "id",
  "key": "key"
}