- Authentication
- Overview
- PAM asset category
- Asset family
- Asset
- Asset attribute
- Asset attribute option
- Asset media file
- PAM asset tag
- PAM asset
- PAM asset reference file
- PAM asset variation file
- Association type
- Attribute group
- Attribute
- Attribute option
- Category
- Channel
- Currency
- Family
- Family variant
- Locale
- Measure family
- Measurement family
- Product media file
- Product model
- Product
- Published product
- Reference entity
- Reference entity media file
- Reference entity attribute
- Reference entity attribute option
- Reference entity record
- System
- Catalogs
- Catalog products
- Product [identifier]
- Product [uuid]
Get authentication token
POST
/api/oauth/v1/token
Authentication
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/oauth/v1/token' \
--header 'Authorization;' \
--header 'Content-type: application/json' \
--data-raw ''
Response Response Example
200 - Example 1
{
"access_token": "string",
"expires_in": 0,
"refresh_token": "string",
"scope": "string",
"token_type": "string"
}
Request
Header Params
Content-type
stringÂ
required
Authorization
stringÂ
required
Body Params application/json
grant_type
stringÂ
required
password
stringÂ
required
username
stringÂ
required
Examples
Responses
🟢200Return an authentication token
application/json
Body
access_token
stringÂ
optional
expires_in
integerÂ
optional
refresh_token
stringÂ
optional
scope
stringÂ
optional
token_type
stringÂ
optional
🟠400Bad request
🟠415Unsupported Media type
🟠422Unprocessable entity
Modified at 2023-08-15 05:53:55