Authorisation API

You can download the full swagger specification in JSON format below:

You can download the full swagger specification in YAML format below:

Retrieve the authorization token using oauth2 client credentials grant type. You can obtain your client credentials by navigating to the "Credentials" tab located in the "Development" section of our Uqudo Customer Portal

Note: Don’t perform this operation inside your mobile application but only from your backend

POST https://auth.uqudo.io/api/oauth/token

Get the access token to use the uqudo SDK and the uqudo API.

Note: The content type of the request is application/x-www-form-urlencoded

Request Body

NameTypeDescription

grant_type*

String

Use the fixed value client_credentials

client_id*

String

Provided client id

client_secret*

String

Provided client secret

{
  "access_token": "JWS authorization token",
  "token_type": "bearer",
  "expires_in": 1800,
  "scope": "scopes",
  "jti": "30a622fd-11aa-464a-8eaf-6fa868540cb0"
}

Last updated