Chilkat Online Tools

DataFlex / Zoom API / Update a tracking field

Back to Collection Items

Use ChilkatAx-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vReq
    Handle hoReq
    Variant vResp
    Handle hoResp
    Integer iRespStatusCode
    String sTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Get Create (RefClass(cComChilkatHttpRequest)) To hoReq
    If (Not(IsComObjectCreated(hoReq))) Begin
        Send CreateComObject of hoReq
    End
    Set ComHttpVerb Of hoReq To "PATCH"
    Set ComPath Of hoReq To "/v2/tracking_fields/:fieldId"
    Set ComContentType Of hoReq To "multipart/form-data"
    Send ComAddParam To hoReq "field" "anim incididunt qui ea"

    Send ComAddParam To hoReq "required" "anim incididunt qui eatrue"

    Send ComAddParam To hoReq "visible" "anim incididunt qui eatruetrue"

    Send ComAddParam To hoReq "recommended_values" 'anim incididunt qui eatruetrue["occaecat consectetur dolor","est"]'

    Send ComAddHeader To hoReq "Authorization" "Bearer <access_token>"

    Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
    If (Not(IsComObjectCreated(hoResp))) Begin
        Send CreateComObject of hoResp
    End
    Get pvComObject of hoReq to vReq
    Get pvComObject of hoResp to vResp
    Get ComHttpSReq Of hoHttp "api.zoom.us" 443 True vReq vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode <> 204) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Response Body:"
        Get ComBodyStr Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

    Showln "Success."


End_Procedure

Curl Command

curl -X PATCH
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: multipart/form-data"
	--form 'field=anim incididunt qui ea'
	--form 'required=anim incididunt qui eatrue'
	--form 'visible=anim incididunt qui eatruetrue'
	--form 'recommended_values=anim incididunt qui eatruetrue["occaecat consectetur dolor","est"]'
https://api.zoom.us/v2/tracking_fields/:fieldId

Postman Collection Item JSON

{
  "name": "Update a tracking field",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "PATCH",
    "header": [
      {
        "key": "Content-Type",
        "value": "multipart/form-data"
      }
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "field",
          "value": "anim incididunt qui ea",
          "description": "Label/ Name for the tracking field.",
          "type": "text"
        },
        {
          "key": "required",
          "value": "true",
          "description": "Tracking Field Required",
          "type": "text"
        },
        {
          "key": "visible",
          "value": "true",
          "description": "Tracking Field Visible",
          "type": "text"
        },
        {
          "key": "recommended_values",
          "value": "[\"occaecat consectetur dolor\",\"est\"]",
          "description": "Array of recommended values",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{baseUrl}}/tracking_fields/:fieldId",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "tracking_fields",
        ":fieldId"
      ],
      "variable": [
        {
          "key": "fieldId",
          "value": "quis officia in reprehenderit",
          "description": "(Required) The Tracking Field ID"
        }
      ]
    },
    "description": "Use this API to update a [tracking field](https://support.zoom.us/hc/en-us/articles/115000293426-Scheduling-Tracking-Fields). \n\n**Scope:** `tracking_fields:write:admin` <br> **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light` \n\n**Prerequisites:** \n* A Business, Education, API or higher plan."
  },
  "response": [
    {
      "name": "**HTTP Status Code:** `204`<br>\nTracking Field updated",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "field",
              "value": "dolore adipisicing",
              "description": "Label/ Name for the tracking field.",
              "type": "text"
            },
            {
              "key": "required",
              "value": "false",
              "description": "Tracking Field Required",
              "type": "text"
            },
            {
              "key": "visible",
              "value": "false",
              "description": "Tracking Field Visible",
              "type": "text"
            },
            {
              "key": "recommended_values",
              "value": "[\"labore\",\"Duis qui\"]",
              "description": "Array of recommended values",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/tracking_fields/:fieldId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tracking_fields",
            ":fieldId"
          ],
          "variable": [
            {
              "key": "fieldId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The Tracking Field ID"
            }
          ]
        }
      },
      "status": "No Content",
      "code": 204,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**HTTP Status Code:** `404`<br>\nTracking Field not found",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "field",
              "value": "dolore adipisicing",
              "description": "Label/ Name for the tracking field.",
              "type": "text"
            },
            {
              "key": "required",
              "value": "false",
              "description": "Tracking Field Required",
              "type": "text"
            },
            {
              "key": "visible",
              "value": "false",
              "description": "Tracking Field Visible",
              "type": "text"
            },
            {
              "key": "recommended_values",
              "value": "[\"labore\",\"Duis qui\"]",
              "description": "Array of recommended values",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/tracking_fields/:fieldId",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tracking_fields",
            ":fieldId"
          ],
          "variable": [
            {
              "key": "fieldId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The Tracking Field ID"
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}