Skip to main content
POST
/
auth
/
login
Login
curl --request POST \
  --url https://api.example.com/auth/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'username=<string>' \
  --data 'password=<string>' \
  --data 'grant_type=<string>' \
  --data scope= \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "contact_id": "<string>",
  "email": "<string>",
  "role": "<string>",
  "token_type": "bearer",
  "client_id": "<string>",
  "full_name": "<string>",
  "avatar_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vinmake.com/llms.txt

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

Body

application/x-www-form-urlencoded
username
string
required
password
string<password>
required
grant_type
string | null
Pattern: ^password$
scope
string
default:""
client_id
string | null
client_secret
string<password>

Response

Successful Response

access_token
string
required
contact_id
string
required
email
string
required
role
string
required
token_type
string
default:bearer
client_id
string | null
full_name
string | null
avatar_url
string | null