Skip to main content
PUT
/
v1
/
orgs
/
{org_id}
/
keys
/
Create a new API key
curl --request PUT \
  --url https://api.arklow.io/v1/orgs/{org_id}/keys/ \
  --header 'Content-Type: application/json' \
  --header 'x-arklow-auth: <api-key>' \
  --data '
{
  "description": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "org_id": "<string>",
    "member_id": "<string>",
    "material": "<string>",
    "user_id": "<string>",
    "description": "<string>"
  },
  "errors": [
    {
      "code": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

x-arklow-auth
string
header
required

Path Parameters

org_id
string
required

Organization identifier

Pattern: ^[0-9]+$

Body

application/json
description
string
Required string length: 2 - 50

Response

200 - application/json

Default Response

data
object
required
errors
object[] | null
required