Logo
Zoom Public API Documentation

Get a user

GET {{baseUrl}}/scim2/Users/:userId

Use this API to return information about a specific user.

OAuth Scope: scim2
Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "id": "<string>", "meta": { "resourceType": "<string>", "location": "<string>", "version": "<string>" }, "schemas": [ "<string>", "<string>" ], "name": { "givenName": "<string>", "familyName": "<string>" }, "emails": [ { "type": "work", "value": "<email>", "primary": "<boolean>" }, { "type": "work", "value": "<email>", "primary": "<boolean>" } ], "displayName": "<string>", "userName": "<email>", "active": "<boolean>", "userType": "On-Prem", "phoneNumbers": [ { "type": "work", "value": "<string>" }, { "type": "work", "value": "<string>" } ], "roles": { "display": "<string>", "value": "<string>", "primary": "<boolean>" }, "groups": { "type": "<string>", "value": "<string>", "display": "<string>" }, "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": { "department": "<string>", "organization": "<string>", "costCenter": "<string>", "employeeNumber": "<string>", "manager": "<email>" }, "urn:us:zoom:scim:schemas:extension:1.0:ZoomUser": { "loginType": { "workEmail": "<boolean>", "sso": "<boolean>" } }, "urn:ietf:params:scim:schemas:extension:zoom:1.0:User": { "personalLinkName": "<string>", "pronouns": "<string>", "zoomUnited": "<string>", "zoomOneBizPlus": "<string>", "zoomIQ": "<boolean>", "zoomCustomerManagedKey": "<boolean>", "zoomWhiteboard": "<boolean>", "zoomWhiteboardPlus": "<boolean>", "zoomTranslatedCaptions": "<boolean>", "zoomHuddles": "<boolean>" } }



Curl
curl -X GET 'https://api.zoom.us/scim2/Users/:userId' -H 'Accept: application/scim+json'

ENDPOINTS