What is the required contents of action field for user list

 
According to the api docs the action field is not required for user list

 

yet I am receiving error saying action field is required.

 

What should I put into the action field?

 

2018-09-06 12:36:34
 
POST
 
400
 
https://api.zoom.us/v2/users

Request Information

Method / Endpoint
POST https://api.zoom.us/v2/users
Headers
accept-encoding: gzip, deflate accept: \*/\* authorization: \*\*\*\*\*\* connection: close content-type: application/json user-agent: python-requests/2.18.4
Params
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJvWUQzbFNVSFFTaVkxaU9xcmFPTlN3IiwiZXhwIjoxNTM2MjUyMTAzfQ.LqIwrgWFKD-eBAJSJhpXaf3OT0RrndeZilAEaJ4whOE data\_type: json
Body
{"status":"active","user\_info":{"type":1,"email":"amattel@eduplanet21.com"}}

Response Information

Status
400
Headers
Set-Cookie: \_zm\_mtk\_guid=215eefda6b8c463d9e5d9fe1f724f041; Domain=.zoom.us; Expires=Tue, 24-Sep-2086 19:50:41 GMT; Path=/; Secure
Data
{ "code": 300, "message": "Validation Failed.", "errors": [{ "field": "action", "message": "Missing field." }] }

Fixed:  I was using post.  Changing to Get fixed the issue.

1 Like