Skip to main content
POST
/
token
OAuth2 token endpoint
curl --request POST \
  --url https://oauth-api.unomiq.com/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'client_id=<string>' \
  --data grant_type=client_credentials \
  --data audience=https://api.unomiq.com \
  --data 'client_secret=<string>' \
  --data 'refresh_token=<string>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Body

application/x-www-form-urlencoded
client_id
string
required
grant_type
string
default:client_credentials
audience
string
default:https://api.unomiq.com
client_secret
string
refresh_token
string

Response

Successful Response