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

Get Auth Token for User

post
Authorizations
Body
userIdstringRequired
orgIdstringRequired
Responses
200
Auth Token sent successfully
application/json
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