Skip to main content
POST
/
api-keys
Create API key
curl --request POST \
  --url https://api.poligono.ai/v1/api-keys \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "data": {
    "created_at": 123,
    "created_by": "<string>",
    "key_last_digits": "<string>",
    "name": "<string>",
    "organization_id": "<string>",
    "status": "active",
    "updated_at": 123,
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Body

application/json

API Key

name
string
required

Response

Created

data
object