Get list of users - Zoho Webinar

Note: This task is applicable to all services except Zoho Creator.

Overview:

This task is used to get a list of users in an organization in Zoho Webinar.

This task is based on Zoho Webinar API: List of users.

Syntax:

<variable> = zoho.webinar.getUsersList(<portal_id>, <index>, <count>, <connection>);

where:

ParamsData typeDescription
<variable>KEY-VALUESpecifies the variable that will hold the response returned by Zoho Webinar.
<portal_Id>NUMBER

Specifies the unique portal identifier where the users will be fetched from.

Note: Portal_Id can be fetched in the following ways.

  • From the URL of the application while accessing it. The URL is in the format webinar.zoho.com/webinar/portal_Id/department_Id/home
  • Get portal ID from Zoho Webinar API, where ZSOID represents the portal ID.
<index>INTEGERSpecifies the pagination start index. Default: "1".
<count>INTEGERSpecifies the number of users list.
<connection>TEXTSpecifies the link name of the Zoho Webinar connection.
Required scope for this connection: ZohoWebinar.user.READ

Example:

response = zoho.webinar.getUsersList(99031443,1,20,"webinar");

where:

response
Is the KEY-VALUE returned by Zoho Webinar. It represents the user details.
"99031443"
Is the NUMBER of the unique portal identifier where the user details will be fetched from.
"1"
Is the INTEGER of the pagination start index. Default: "1".
"20"
Is the INTEGER of the number of users list.
"webinar"
Is the TEXT that represents the name of the connection.

Sample response

Success response

{
  "representation": [
    {
      "userId": "640967000000027007",
      "zuid": "99030795",
      "role": "Administrator",
      "organization": {
        "orgId": "99031443",
        "orgName": "sri",
        "link": "/api/v2/org/99031443",
        "isDefault": true
      },
      "firstName": "admin",
      "lastName": "user",
      "fullName": "asminf user",
      "emailId": "admin.nm+n1@zoho.com"
    }
  ],
  "totalCount": 4,
  "resourceType": "/api/v2/99031443/user"
}
 

Failure response

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