-
/api/v{version}/Calls/GetActiveCalls /api/v{version}/Auth/Validate -Generates a token that is then used for subsquent requests to the API. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @feadrick! For the v3 api you'll need to authenticate with the API first Other values you'll get on the response payload, |
Beta Was this translation helpful? Give feedback.
Hey @feadrick!
For the v3 api you'll need to authenticate with the API first
/api/v3/Auth/Validate
passing inUsr
andPass
strings for your login. After that you'll get a payload back with aTkn
value that you'll need to pass in as aBasic
Authorization header value with every request. See an example here for Angular https://github.com/Resgrid/BigBoard/blob/master/src/interceptors/http.interceptor.module.ts#L12.Other values you'll get on the response payload,
Txd
is when the token expires.