Mode API
Update application mode
Update the mode (dev or prod) of the application.
PUT
Update application mode
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The id of the app the request refers to. An application's unique identifier.
Examples:
"54e9ujn"
"fvua38g"
Body
application/json
Available options:
dev, prod Example:
"prod"
Response
No Content
Previous
Mint a tokenMint a signed JWT from an arbitrary claims payload. The token is
signed with the application's access-token signing keys, so it
verifies against the application's published JWKS exactly like a
real access token.
This endpoint is intended for local development and testing. It is
only available for applications in **dev** mode; it is rejected for
applications in **prod** mode.
The minted token's lifetime is capped at 24 hours: a supplied `exp`
claim may not be more than 24 hours in the future, and a missing
`exp` defaults to 24 hours from now. Missing `iat` and `jti` claims
are populated automatically.
Next
Update application mode