Auth
Stores and Sales Channels
Lists
Products
Injection Web Services
Order Fulfillment
Switch Transactional
Auth
Get Token
This endpoint allows obtaining the access token for OAuth2 clients
POST
/
authentication
/
login
Copy
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>"
}'
Copy
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}
Body
application/json
Response
200
application/json
response upon logging in
The response is of type object
.
Copy
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>"
}'
Copy
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}
Assistant
Responses are generated using AI and may contain mistakes.