Get the authentication page

Endpoint for calling the Excoinz Login window.

Request Syntax

POST /auth/login HTTP/1.1
Host: api.excoinz.com
EXCOINZ_SECRET: ${SECRET_KEY}
Content-Type: application/json

Request

Response

Sample

curl -X POST https://api.excoinz.com/auth/login \
     -H "EXCOINZ_SECRET: ${SECRET_KEY}" \
     -H "Content-Type: application/json" \
     -d '{
         "client_id": "YOUR_CLIENT_ID",
         "locale": "YOUR_LOCALE",
         "redirect_uri": "YOUR_REDIRECT_URI"
     }'

Last updated