Chilkat Online Tools

PowerBuilder / Zoom API / Search company contacts

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Id
string ls_Email
string ls_First_name
string ls_Last_name
string ls_Presence_status
string ls_Phone_number
string ls_Sip_phone_number
string ls_Extension_number
string ls_Im_group_id
string ls_Im_group_name
string ls_Dept
string ls_Job_title
string ls_Location
string ls_Sip_uri
integer li_Contact_type
integer j
integer li_Count_j
string ls_Country
string ls_Code
string ls_V_number
integer li_Verified
string ls_Label
integer li_IntVal
integer li_Page_size
string ls_Next_page_token
integer i
integer li_Count_i

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")

loo_QueryParams.UpdateString("search_key","quis officia in reprehenderit")
loo_QueryParams.UpdateString("query_presence_status","quis officia in reprehenderit")
loo_QueryParams.UpdateInt("page_size",1)
loo_QueryParams.UpdateInt("contact_types",1)
loo_QueryParams.UpdateString("next_page_token","quis officia in reprehenderit")

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"

loo_Resp = loo_Http.QuickRequestParams("GET","https://api.zoom.us/v2/contacts",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_QueryParams
    return
end if

loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_QueryParams
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "page_size": 1,
//   "next_page_token": " ",
//   "contacts": [
//     {
//       "id": "isds324bdfsf",
//       "email": "example@example.com",
//       "first_name": "John",
//       "last_name": "Doe",
//       "presence_status": "Offline",
//       "phone_number": "15550100",
//       "phone_numbers": [
//         {
//           "country": "US",
//           "code": "+1",
//           "number": "15550102",
//           "verified": true,
//           "label": "Mobile"
//         }
//       ],
//       "sip_phone_number": "11111111",
//       "direct_numbers": [
//         111111,
//         222222
//       ],
//       "extension_number": "010",
//       "im_group_id": "fhksdhfew34hjds",
//       "im_group_name": "Engineering",
//       "dept": "Engineering",
//       "job_title": "Engineer",
//       "location": "New York",
//       "sip_uri": "800@aaa.example.com",
//       "contact_type": 1
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

li_Page_size = loo_JResp.IntOf("page_size")
ls_Next_page_token = loo_JResp.StringOf("next_page_token")
i = 0
li_Count_i = loo_JResp.SizeOfArray("contacts")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("contacts[i].id")
    ls_Email = loo_JResp.StringOf("contacts[i].email")
    ls_First_name = loo_JResp.StringOf("contacts[i].first_name")
    ls_Last_name = loo_JResp.StringOf("contacts[i].last_name")
    ls_Presence_status = loo_JResp.StringOf("contacts[i].presence_status")
    ls_Phone_number = loo_JResp.StringOf("contacts[i].phone_number")
    ls_Sip_phone_number = loo_JResp.StringOf("contacts[i].sip_phone_number")
    ls_Extension_number = loo_JResp.StringOf("contacts[i].extension_number")
    ls_Im_group_id = loo_JResp.StringOf("contacts[i].im_group_id")
    ls_Im_group_name = loo_JResp.StringOf("contacts[i].im_group_name")
    ls_Dept = loo_JResp.StringOf("contacts[i].dept")
    ls_Job_title = loo_JResp.StringOf("contacts[i].job_title")
    ls_Location = loo_JResp.StringOf("contacts[i].location")
    ls_Sip_uri = loo_JResp.StringOf("contacts[i].sip_uri")
    li_Contact_type = loo_JResp.IntOf("contacts[i].contact_type")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("contacts[i].phone_numbers")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Country = loo_JResp.StringOf("contacts[i].phone_numbers[j].country")
        ls_Code = loo_JResp.StringOf("contacts[i].phone_numbers[j].code")
        ls_V_number = loo_JResp.StringOf("contacts[i].phone_numbers[j].number")
        li_Verified = loo_JResp.BoolOf("contacts[i].phone_numbers[j].verified")
        ls_Label = loo_JResp.StringOf("contacts[i].phone_numbers[j].label")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("contacts[i].direct_numbers")
    do while j < li_Count_j
        loo_JResp.J = j
        li_IntVal = loo_JResp.IntOf("contacts[i].direct_numbers[j]")
        j = j + 1
    loop
    i = i + 1
loop


destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -G -d "search_key=quis%20officia%20in%20reprehenderit"
	-d "query_presence_status=quis%20officia%20in%20reprehenderit"
	-d "page_size=1"
	-d "contact_types=1"
	-d "next_page_token=quis%20officia%20in%20reprehenderit"
	-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/contacts

Postman Collection Item JSON

{
  "name": "Search company contacts",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/contacts?search_key=quis officia in reprehenderit&query_presence_status=quis officia in reprehenderit&page_size=1&contact_types=1&next_page_token=quis officia in reprehenderit",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "contacts"
      ],
      "query": [
        {
          "key": "search_key",
          "value": "quis officia in reprehenderit",
          "description": "(Required) Provide the keyword - either first name, last name or email of the contact whom you have to search for."
        },
        {
          "key": "query_presence_status",
          "value": "quis officia in reprehenderit",
          "description": "Set `query_presence_status` to `true` in order to include the presence status of a contact in the response."
        },
        {
          "key": "page_size",
          "value": "1",
          "description": "The number of records to be returned with a single API call."
        },
        {
          "key": "contact_types",
          "value": "1",
          "description": "A comma-separated list of the type of user contact to query: \n* `1` — A Zoom user. \n* `2` — An auto receptionist. \n* `3` — A common area phone. \n* `4` — A call queue. \n * `5` — A shared line group. \n* `6` — A shared global directory. \n* `7` — A shared office contact. \n\n**Note:** \n* You must have a [phone management role with the \"**View**\" permission](https://support.zoom.us/hc/en-us/articles/360042099012-Using-Zoom-Phone-role-management) to query the `2`, `3`, `4`, `5`, and `7` values. \n* You must provide a valid `search_key` value to query this parameter."
        },
        {
          "key": "next_page_token",
          "value": "quis officia in reprehenderit",
          "description": "The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes."
        }
      ]
    },
    "description": "A user under an organization's Zoom account has internal users listed under Company Contacts in the Zoom Client. Use this API to search users that are in the company contacts of a Zoom account. Using the `search_key` query parameter, provide either first name, last name or the email address of the user that you would like to search for. Optionally, set `query_presence_status` to `true` in order to include the presence status of a contact. <br><br>\n\n**Scopes:** `contact:read:admin`, `contact:read`<br>\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium` "
  },
  "response": [
    {
      "name": "**HTTP Status Code:** `200`<br>\nContact returned successfully.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/contacts?search_key=quis officia in reprehenderit&query_presence_status=quis officia in reprehenderit&page_size=1&contact_types=1&next_page_token=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "contacts"
          ],
          "query": [
            {
              "key": "search_key",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "query_presence_status",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "page_size",
              "value": "1"
            },
            {
              "key": "contact_types",
              "value": "1"
            },
            {
              "key": "next_page_token",
              "value": "quis officia in reprehenderit"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"page_size\": 1,\n \"next_page_token\": \" \",\n \"contacts\": [\n  {\n   \"id\": \"isds324bdfsf\",\n   \"email\": \"example@example.com\",\n   \"first_name\": \"John\",\n   \"last_name\": \"Doe\",\n   \"presence_status\": \"Offline\",\n   \"phone_number\": \"15550100\",\n   \"phone_numbers\": [\n    {\n     \"country\": \"US\",\n     \"code\": \"+1\",\n     \"number\": \"15550102\",\n     \"verified\": true,\n     \"label\": \"Mobile\"\n    }\n   ],\n   \"sip_phone_number\": \"11111111\",\n   \"direct_numbers\": [\n    111111,\n    222222\n   ],\n   \"extension_number\": \"010\",\n   \"im_group_id\": \"fhksdhfew34hjds\",\n   \"im_group_name\": \"Engineering\",\n   \"dept\": \"Engineering\",\n   \"job_title\": \"Engineer\",\n   \"location\": \"New York\",\n   \"sip_uri\": \"800@aaa.example.com\",\n   \"contact_type\": 1\n  }\n ]\n}"
    }
  ]
}