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,
"access_token_expiry": 1718000000000,
"refresh_token_expiry": 1720000000000
}Validate whether the current access_token is still active. Pass the Bearer token in the Authorization header.
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,
"access_token_expiry": 1718000000000,
"refresh_token_expiry": 1720000000000
}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.
Authorization: Bearer <access_token>
Token is valid.