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
}