Test
The Test endpoint lets a developer verify that a previously issued authorization token is valid and accepted by the API, without performing any business operation. It is typically called right after authentication, or when troubleshooting integration issues, to confirm the Bearer token is being sent correctly and is still active. A valid token returns 200 OK, while a missing, invalid, or expired token returns 401 Unauthorized.
Request Fields
Field | Type | Required | Description |
|---|---|---|---|
Authorization (header) | string | Yes | Bearer token obtained from the Authorization endpoint, sent as |
Response Fields
No response fields. A 200 status code confirms the token is valid; no response body is returned.
OK