authorization header.| Key | Description | Type |
|---|---|---|
| resource_owner_id | ID of member that the token has been for | integer |
| scopes | Not implemented | string[] |
| expires_in_seconds | Seconds for how long token will be valid | integer (seconds) |
| application | Not implemented | Object |
| created_at | When the token has been created | integer (timestamp) |
| Status | Reason |
|---|---|
460 | Token from authorization is invalid (or expired) |
{
"resource_owner_id": 42, // ID of member that the token has been issued for
"scopes": [],
"expires_in_seconds": 73614, // Seconds until expiration
"application": {
"uid": null
},
"created_at": 1506516784
}curl --location --request GET 'https://api.mpc.dev.placewise.com/v3/infinity-mall/members/oauth/token/info' \
--header 'X-User-Agent: ApiDog' \
--header 'X-Product-Name: default' \
--header 'X-Loyalty-Club-Slug: infinity-mall' \
--header 'X-Customer: 447' \
--header 'Authorization: Bearer ' \
--header 'X-Client-Authorization: ' \
--header 'Content-Type: application/json'{}