Generate permanent developer authentication token

Generates a long-lasting JWT token for developer authentication (effectively non-expiring)

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
developerIdstringRequired
The ID of the developer
apiKeystringRequired
The API key for the developer

Response

Permanent token generated successfully
access_tokenstring
The JWT token for authentication
token_typestring

The type of token (always “Bearer”)

expires_ininteger

Token expiration time in seconds (very large value)

expires_atstringformat: "date-time"

Token expiration date (far in the future)

Errors

400
Bad Request Error
500
Internal Server Error