POST
/
authentication
curl --request POST \
  --url https://api.worqhat.com/authentication \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "userEmail": "user@example.com",
  "userDisplayName": "John Doe",
  "orgName": "example_org",
  "processing_time": 2311,
  "processing_id": "cd185dd4-fcfb-4b15-93de-db9eded23ade"
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
status
string

Status indicating the success of the authentication.

userEmail
string

The email address of the authenticated user.

userDisplayName
string

The display name of the authenticated user.

orgName
string

The organization name associated with the authenticated user.

processing_time
integer

The time taken to process the request, in milliseconds.

processing_id
string

A universally unique identifier for the request. This can be used to track the request in the logs.