AuthAuthorization

Generate Access Token — OAuth Client Credentials

Generate an access token using client_id and client_secret. Authenticate all Deepvue API requests with OAuth 2.0 client credentials flow.

curl -X POST "https://production.deepvue.tech/v1/authorize" \
  --form client_id=example_string \
  --form client_secret=example_string
{
  "access_token": "string",
  "token_type": "string",
  "expiry": "string"
}
POST
/v1/authorize
POST
Content-Typestring
Required

The media type of the request body

Options: multipart/form-data
client_idstring
Required

CLIENT_ID provided to you

client_secretstring
Required

CLIENT_SECRET provided to you

Request Preview
Response

Response will appear here after sending the request

Body

multipart/form-data
client_idstring
Required

CLIENT_ID provided to you

client_secretstring
Required

CLIENT_SECRET provided to you

Responses

access_tokenstring
token_typestring
expirystring