Logo
Zoom Public API Documentation

Create a new whiteboard

POST {{baseUrl}}/whiteboards

Use this API to create a new whiteboard for a user.

Scopes: whiteboard:write

Rate Limit Label: LIGHT

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "whiteboard_id": "<string>", "whiteboard_name": "Untitled", "locked": false, "trashed": false, "readonly": false, "non_cloud": false, "created_date": "<dateTime>", "modified_date": "<dateTime>", "share_link_setting": { "share_scope": 0, "share_role": 3 }, "advanced_share_setting": { "can_share": "<boolean>", "share_to_external": "<boolean>", "external_can_share": "<boolean>" } }



Curl
curl -X POST 'https://api.zoom.us/v2/whiteboards' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"name":"Untitled"}'

ENDPOINTS