Refresh Session
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
- 500
successful operation
- application/json
- Schema
- Example (from schema)
Schema
customerNames object[]
Customer names and property list
Array [customerName stringCustomer Name
prismaId stringPrisma Identifier
tosAccepted booleanTerms 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
login_failed_unknown_error
Loading...