Create an Access Token to log user in.
POST/auth/signin
Enter your API ID and API Key on the requisition body below and execute to get your Access Token. Your Access Token is necessary to log in under the Authorize section.
Request
- application/json
Body
required
Create an Access Token requires an API ID and Api Key.
api_id stringrequired
User defined apiId.
api_key stringrequired
User defined apiKey.
Responses
- 200
- 400
- 401
User authenticated successfully.
- application/json
- Schema
- Example (from schema)
Schema
access_token stringrequired
JWT access token. Token used to access all protected endpoints.
{
"access_token": "string"
}
If any required params are missing or has invalid format or type.
User authentication failed.
Loading...