Get Users For A Site
This endpoint lists all users in the selected site, the results are filtered to ensure only locks the current user is an administrator of will return user information.
HTTP Request
GET https://api.doordeck.com/site/SITE_ID/user/
- Request
- Response
CURL
curl 'https://api.doordeck.com/site/00000000-0000-0000-0000-000000000000/user/' \
-H "Authorization: Bearer TOKEN"
Remember
- Replace
TOKENwith your access token. - Replace
00000000-0000-0000-0000-000000000000with the site's ID.
JSON
[
{
"userId": "5b2b9930-3a7e-11e8-940e-bffab372a82e",
"email": "michael@doordeck.com",
"displayName": null,
"orphan": false
},
{
"userId": "f07d3ea0-593e-11e8-8257-bffab372a82e",
"email": "john@doordeck.com",
"displayName": null,
"orphan": false
}
]