Skip to product menu
Skip to main content

Get the details of a specific user

Get the details of a specific user in an organization.

API: https://meeting.zoho.com/api/v2/{orgId}/user/{userId} 

Method: Get 

OAuth Scope:ZohoMeeting.user.READ 

Path Params: 
orgId - organization id which is retrieved from currentUser api 
userId - user id which is retrieved from get list of users api

Request Example

Copiedhttps://meeting.zoho.com/api/v2/1234567/user/1234

Response Example

Copied{
    "representation": {
        "userId": "1234567890",
        "zuid": "12345678",
        "role": "Administrator",
        "organization": {
            "orgId": "1234567",
            "orgName": "Zoho",
            "link": "/api/v2/org/1234567"
        },
		"firstName": "Zlyker",
       "lastName": "Meeting",
       "fullName": "Zlyker Meeting",
		"meetingLicense": {
            "enabled": true,
            "edition": "Professional"
        },
        "webinarLicense": {
            "enabled": true,
            "edition": "Professional"
        }
    },
    "resourceType": "/api/v2/1234567/user/1234567890"
}

Show full

Show less

POSSIBLE ERROR CASES

1.Invalid DC or Invalid token

 

HTTP Code: 400
HTTP Body:

Copied{
    "error": {
        "code": 2000,
        "message": "INVALID_OAUTHTOKEN"
    }
}

Resolution: Check whether the entered DC is correct and entered token is not expired.

2. Invalid orgId

HTTP Code: 403
HTTP Body:

Copied{
    "error": {
        "code": 1025,
        "message": "Org doesn't matches with request uri"
    },
    "resourceType": "/meeting/api/v2/1234567/user"
}

Resolution: Check whether the entered organization id is correct.

3. Invalid Org Admin

HTTP Code: 403
HTTP Body:

Copied{
    "error": {
        "code": 1009,
        "message": "Invalid org admin"
    },
    "resourceType": "/meeting/api/v2/1234567/user"
}

Resolution: Only admin can access this api. Kindly contact the admin.