latestOpenAPI 3.1.0Proprietary - UrbanFox2026-08-101443106.2 KB

e99fd9028c60

OAuth

Issue OAuth token

Generate an OAuth access token for machine-to-machine API access.

post/v2/oauth/token

Response

Successful Response

access_tokenstring required

JWT access token; send as Authorization: Bearer <access_token> on subsequent API requests

token_type'Bearer' required

OAuth 2.0 token type; always Bearer for this API

expires_ininteger required

Number of seconds until the access token expires, counted from issuance

Example response

{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.example.signature",
  "token_type": "Bearer",
  "expires_in": 86400
}