You're probably looking for one of these:
Show important announcements or links here
/auth/prepare (Prepare authentication flow)Prepares a new authenthication flow.
purpose: What the app does. Should be short and clear.permissions: A list of valid permissions of what the app needs to do. An empty array is accepted, for identification.contact: How you want to get contacted as the owner of the application.name: The application name, which will be shown on the consent screen.code: 8-char code consisting of uppercase letters and numbers for the user to use. See /auth/link.key: Key which will allow you to retrieve the real token after the flow is finished. See /auth/redeem.200: Success400: Bad request; parameters missing500: Internal server error415: Unsupported Media Type; you are using the wrong content type405: Method not allowed; you are using the wrong request method429: Too Many Requests; you've reached the ratelimit for this endpoint/auth/link (Start authentication flow (client-side))Redirect the user to this page, or ask them to open it. This request should NOT be done by the server.
code: (optional) The code if redirected to make the flow faster.200: Success (no code param)400: Bad request; parameters missing500: Internal server error302: Success (with code param)405: Method not allowed; you are using the wrong request method429: Too Many Requests; you've reached the ratelimit for this endpoint/auth/test (Test Authenthication)Verify that your JWT is still valid and can be used to authenthicate
200: Success400: Bad request; parameters missing500: Internal server error405: Method not allowed; you are using the wrong request method429: Too Many Requests; you've reached the ratelimit for this endpoint/auth/redeem (Redeem auth code for token)After a successful auth flow, you can redeem the key you were given in /auth/prepare for a token.
key: The key to redeembody: The JSON of the JWT. Useful if you cannot parse the JWT, otherwise can be ignored. token: JWT for usage with the other APIs200: Success400: Bad request; parameters missing500: Internal server error415: Unsupported Media Type; you are using the wrong content type405: Method not allowed; you are using the wrong request method429: Too Many Requests; you've reached the ratelimit for this endpointYou've reached the bottom. Back to top?