Authenticate
Retrieve a session token in JWT format for a specific user.
Request
GET https://customer.staging.meetingdoctors.com/2/authenticate
Headers
Name | Value |
---|---|
apiKey | Integration identifier provided by MeetingDoctors |
secretKey | Security key provided by MeetingDoctors to securize server-to-server communications |
Content-Type | application/json |
Accept | application/json |
Request Parameters
Name | Required | Type | Value |
---|---|---|---|
installationGuid | True | String | UUID randomly generated for the user |
userToken | True | String | Your user unique identifier |
Example
GET https://customer.meetingdoctors.com/2/authenticate?installationGuid=bc19c506-92be-11ed-a1eb-0242ac120002&userToken=47909749J
Response
Parameters
Name | Type | Value |
---|---|---|
jwt | String | session token in jwt format |
userHash | String | UUID for the user |
sessionToken | Integer | UUID for the current session |
Example
{
"sessionToken": "f8767940-a467-4217-9b1c-382f44354925",
"userHash": "52c2a324-077b-45cc-84f3-851ad57dd0a1",
"jwt": "eyJ0eXAiOiJKV1QiLCJ...."
}