Saltar para o conteúdo principal
GET
/
oauth
/
authorize
Iniciar autorizacao
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.

Parâmetros de consulta

client_id
string<uuid>
obrigatório

UUID do aplicativo OAuth.

redirect_uri
string<uri>
obrigatório

URI de redirecionamento registrado no aplicativo.

response_type
enum<string>
obrigatório

Deve ser "code".

Opções disponíveis:
code
scope
string
obrigatório

Escopos separados por espaco. Ex: "people:read deals:write".

state
string
obrigatório

String opaca gerada pelo integrador para prevencao de CSRF.

code_challenge
string
obrigatório

BASE64URL(SHA256(code_verifier)).

code_challenge_method
enum<string>
obrigatório

Deve ser "S256".

Opções disponíveis:
S256

Resposta

Redirecionamento para a pagina de autorizacao.