POST
/
domain-cliente
/
token
curl --request POST \
  --url https://api.artisn.desarrollo-redbrand.com/api/domain-cliente/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": 123,
  "client_secret": "<string>",
  "grant_type": "client_credentials"
}'
{
  "access_token": "<string>",
  "token_type": "Bearer",
  "expires_in": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Token successfully obtained

The response is of type object.