Skip to main content
POST
/
api
/
v1
/
projects
/
{project_id}
/
keys
Create Project Key
curl --request POST \
  --url https://api.example.com/api/v1/projects/{project_id}/keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Name": "<string>"
}
'
{
  "data": {},
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
string
required

Body

application/json

Only name is required; key is generated server-side.

Name
string
required

Response

Successful Response

success
boolean
required
data
unknown