Authorization
The Authorization API provides access to the Bloxs platform by issuing JWT bearer tokens. Developers use this API as the first step of any integration: exchanging an API key and API secret for a token, then including that token as a Bearer credential on requests to the other Bloxs APIs.
The reference contains two endpoints:
Authorization: generates a JWT token from an API key and API secret. The key identifies the user within the client application, and the secret identifies the client application itself and is used to hash the token.
Test: verifies that a previously issued Bearer token is still valid, without performing any business operation. It is typically called right after authentication, or when troubleshooting integration issues.