GET/v2/users/{user-id}Get user

Get a specific user based on ID
headerAuthorizationAuthentication token (bearer token or API key).

Response

status200All ok, returned found user
status401Invalid authentication token
status404User not found
{
"id" : Number,
"account" : {
"id" : Number,
"firstName" : String,
"lastName" : String
},
"organization" : {
"id" : Number,
"name" : String,
"personal" : Boolean,
"personalAccount" : {
"id" : Number,
"firstName" : String,
"lastName" : String
}
},
"firstName" : String,
"lastName" : String,
"emailAddress" : String,
"emailAddressVerify" : Boolean,
"emailAddressVerified" : Boolean,
"phoneNumber" : Phone number (E.164, e.g. "+31850607337"),
"phoneNumberVerify" : Boolean,
"phoneNumberVerified" : Boolean,
"superUser" : Boolean,
"description" : String,
"remarks" : String,
"invitation" : {
"token" : String, UUID 4 formatted (e.g. "a426e157-8a5c-456a-8865-bec6394867ab"),
"url" : String,
"expiration" : Date/time with a timezone (ISO 8601, e.g. "2022-06-23T13:53:02+02:00"),
"isExpired" : Boolean
},
"dateModified" : Date/time with a timezone (ISO 8601, e.g. "2022-06-23T13:53:02+02:00"),
"dateCreated" : Date/time with a timezone (ISO 8601, e.g. "2022-06-23T13:53:02+02:00"),
"externalId" : String,
"autoRemoveAfter" : "WEEK" / "MONTH" / "YEAR",
"autoRemoveDate" : Date/time with a timezone (ISO 8601, e.g. "2022-06-23T13:53:02+02:00"),
"userGroups" : [{
"id" : Number,
"organizationId" : Number,
"name" : String,
"description" : String,
"groupAdmin" : Boolean
}]
}

Example: Get user for specified id

GET/v2/users/4

headerAuthorizationBearer 64797479-e3e5-4cf8-a1c9-4957cd9836d9

Response

status200
headerAccess-Control-Expose-Headersauthorization, content-type
headerAccess-Control-Allow-Headersauthorization, content-type
headerAccess-Control-Allow-MethodsGET, POST, DELETE, OPTIONS, PUT
headerAccess-Control-Allow-Origin*
headerStrict-Transport-Securitymax-age=31536000; includeSubDomains
headerX-Frame-OptionsSAMEORIGIN
headerX-Content-Type-Optionsnosniff
headerX-XSS-Protection1; mode=block
headerContent-Security-Policydefault-src 'none'; frame-ancestors 'none'; base-uri 'none'; form-action 'none'
headerReferrer-Policyno-referrer
headerFeature-Policyself
headerPermissions-policyinterest-cohort=()
{
"id": 4,
"account": {
"id": 1,
"firstName": "Anna"
}
,
"organization": {
"id": 2,
"name": "Business Account",
"personal": false
}
,
"firstName": "Annabel HR",
"emailAddressVerify": false,
"emailAddressVerified": false,
"phoneNumberVerify": false,
"phoneNumberVerified": false,
"superUser": true,
"dateCreated": "2026-03-10T09:38:13.474997Z",
"userGroups": []
}