Get JWT for a User
This endpoint will allow you to get a JWT for a user using their userId and orgId, valid for 30 days
Authorizations
Body
userIdstringRequired
orgIdstringRequired
Responses
200
Auth Token sent successfully
application/json
400
Bad request
409
Conflict
post
POST /api/v1/user/getAuthToken HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 32
{
"userId": "text",
"orgId": "text"
}
{
"authToken": "text"
}
Last updated