Updating Mobile Number via API

Hello - I’m new to using using Zoom API’s. I’m attempting to use Postman to update our users mobile number category via a CSV.

I did the run collection and PATCH “update a user” with the attached information in the body.
Using 1 test user in a CSV file I get a 204 success code but the information doesn’t reflect in Zoom.

I could be overlooking something simple, but any help would be appreciated. Thank you

The CSV variables are ‘email’ ‘mobile’

PATCH {{baseUrl}}/users/{{email}}

{
  "phone_numbers": [
    {
      "code": "+1",
      "country": "US",
      "label": "Mobile",
      "number": "{{mobile}}"
    }
    ]
}

Hi @pteague
Thanks for reaching out to the Zoom developer forum and welcome to our community!
I tried updating a user and I passed the same request body that you are sending in my request and I was able to update it

{
“phone_numbers”: [
{
“code”: “+1”,
“country”: “US”,
“label”: “Mobile”,
“number”: “5189569698”
}
]
}

Then I queried the user via API and I could see the phone number, as well as in the webportal.

This topic was automatically closed 368 days after the last reply. New replies are no longer allowed.