Create Access Token for Login
POST/auth/signin
Generate an Access Token by providing your API ID and API Key in the request body. Use the Access Token to authenticate and log in to the application via 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...