Properties
| Name | Type | Description |
|---|---|---|
| expiresIn | integer | Time in seconds after which the issued accessToken expires. Endpoints:
|
| issuedAt | string | The date and time on which accessToken was created for the customer. Endpoints:
|
| accessToken | string | Access Token to access YSL 1.1 services. Endpoints:
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientCredentialToken",
"title": "ClientCredentialToken",
"type": "object",
"properties": {
"expiresIn": {
"type": "integer",
"description": "Time in seconds after which the issued accessToken expires.<br><br><b>Endpoints</b>:<ul><li>POST /auth/token</li></ul>",
"format": "int32",
"readOnly": true
},
"issuedAt": {
"type": "string",
"description": "The date and time on which accessToken was created for the customer.<br><br><b>Endpoints</b>:<ul><li>POST /auth/token</li></ul>",
"readOnly": true
},
"accessToken": {
"type": "string",
"description": "Access Token to access YSL 1.1 services.<br><br><b>Endpoints</b>:<ul><li>POST /auth/token</li></ul>",
"readOnly": true
}
}
}