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>"
}Login endpoint for Supabase Auth.
In Swagger UI Authorize dialog:
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.