Authentication and authorization
Bearer authentication and authorization
Nexta uses the Bearer authentication scheme.
Following endpoints are used:
- GET token /api/v3.0/token
- GET refresh token /api/v3.0/token/refreshToken
- GET token details /api/v3.0/token/details
- GET token status /api/v3.0/token/status
Authentication
To authenticate in Nexta you need to perform a request to GET /api/v3.0/token endpoint providing "userName" and "password" headers.
After successful authentication you should receive the following response:
{
"Token": "string"
}
Authorization
To authorize on Nexta API endpoints you need to provide Authorization header in the request.
Authorization: Bearer <token>