Refresh Session
GET/auth_token/extend
Extend a user's session. The JWT token returned is valid until the next session timeout occurs. This method requires a valid session token to be passed (token from a prior successful extend or login calls).
Responses
- 200
- 401
successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
customerNames object[]
Customer names and property list
customerName string
Customer Name
prismaId string
Prisma Identifier
tosAccepted boolean
Terms of Service Accepted
message string
Authentication status
roles string[]
List of user permissions based on user role type. This attribute is populated only for the refresh token response.
token string
JSON Web Token (JWT)
{
"customerNames": [
{
"customerName": "string",
"prismaId": "string",
"tosAccepted": true
}
],
"message": "string",
"roles": [
"string"
],
"token": "string"
}
token_expired
Loading...