POST
/
v1
/
project
/
tokens
curl --request POST \
  --url https://api.poix.io/v1/project/tokens \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "label": "Dev token"
}'
{
  "id": "0659684b-7658-451d-bb1e-3c400e0b0950",
  "token": "poix-OzhCUl37R4yswp2EOKBGE6bjZ6EIWHjxJ6H3JOERkmIAmeibAbQ"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
label
string

The label for the token.

Required string length: 1 - 128
settings
object

The settings for the token.

Response

200
application/json
Successful response
id
string
required

The unique ID of the token.

token
string
required

The token value.