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

Body

application/json
grant_type
string | null
default:client_credentials
client_id
string | null
client_secret
string | null

Response

Successful Response