Skip to main content
GET
/
users
/
{id}
Getting details of a User
curl --request GET \
  --url https://api.qminder.com/v1/users/{id} \
  --header 'X-Qminder-REST-API-Key: <api-key>'
"{\n    \"statusCode\": 200,\n    \"id\": 111111,\n    \"email\": \"[email protected]\",\n    \"firstName\": \"Test\",\n    \"lastName\": \"User\",\n    \"selectedLocation\": 18588,\n    \"roles\": [\n        {\n            \"id\": 1234,\n            \"type\": \"ADMIN\"\n        }\n    ]\n}"

Authorizations

X-Qminder-REST-API-Key
string
header
default:yourbusinessapikey
required

Path Parameters

id
string
required

The ID or email of the User to query

Response

200 - application/json

200

statusCode
integer
default:0
Example:

200

id
integer
default:0
Example:

111111

email
string
firstName
string
Example:

"Test"

lastName
string
Example:

"User"

selectedLocation
integer
default:0
Example:

18588

roles
object[]