Skip to main content
POST
/
api-keys
/
create-client-key
Create new Client key
curl --request POST \
  --url http://localhost:4000/v1/api-keys/create-client-key \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id_integrator": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "name": "<string>",
  "description": "<string>"
}
'

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Body

application/json
id_integrator
string
required

Unique identifier for the integrator.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

name
string
required

Name of the Client Key

description
string
required

Description of the Client key

Response

Client key created