curl --request GET \
--url https://stagingstores.xoxoday.com/chef/v1/oauth/token \
--header 'Authorization: Bearer <token>'{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "bearer",
"expires_in": 1296000
}Validate whether the current access_token is still active. Pass the Bearer token in the Authorization header. Note: expires_in is in seconds.
curl --request GET \
--url https://stagingstores.xoxoday.com/chef/v1/oauth/token \
--header 'Authorization: Bearer <token>'{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "bearer",
"expires_in": 1296000
}Documentation Index
Fetch the complete documentation index at: https://help-plum.xoxoday.com/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Type | Description |
|---|---|---|
| access_token | string | The validated access token issued by Xoxoday. Used for authorization in subsequent API calls. |
| token_type | string | Indicates the type of token. Always returned as "bearer". |
| expires_in | number | Epoch timestamp representing when the token will expire. |
access_token is valid or not, then you can call the endpoint as outlined on this page. The client application will pass the bearer token in the header. The response to the request will be as outlined on the right-hand side panel.
Note: expires_in is in seconds.