Skip to main content
GET
/
oauth
/
authorize
Start authorization
curl --request GET \
  --url https://api.vendaze.com/oauth/authorize
{
  "error": {
    "code": "not_found",
    "message": "Resource not found.",
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.vendaze.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

client_id
string<uuid>
required

UUID of the OAuth application.

redirect_uri
string<uri>
required

Redirect URI registered with the application.

response_type
enum<string>
required

Must be "code".

Available options:
code
scope
string
required

Space-separated scopes. Example: "people:read deals:write".

state
string
required

Opaque string generated by the client for CSRF prevention.

code_challenge
string
required

BASE64URL(SHA256(code_verifier)).

code_challenge_method
enum<string>
required

Must be "S256".

Available options:
S256

Response

Redirect to the authorization page.