Guides
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
https://api.artisn.desarrollo-redbrand.com/api/authentication/login
| Key | Type | Description |
|---|---|---|
client_id | string | Unique identifier for the client application. |
client_secret | string | Secret key for the client application used for authentication. |
grant_type | string | Grant type used for authentication. |
curl --request POST \
--url https://api.artisn.desarrollo-redbrand.com/api/authentication/login \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"client_secret": "<string>",
"grant_type": "<string>"
}'
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}
| Key | Type | Description |
|---|---|---|
accessToken | string | Generated access token, used to authenticate against protected endpoints. |
