Logo
Zoom Public API Documentation

Upload iq multipart file.

POST {{baseUrl}}/iq/files/multipart

Use this API to upload a multipart file.

Note: * The base URL for this API is https://fileapi.zoom.us/v2/. * The rate limit of this API is 20 requests per second or 2000 requests per day per IP address. * The caller must support HTTP 30x redirects. * The caller must retain the authorization header when redirected to a different hostname. * Video can be in .mov, .mp4, .avi, .wmv or H.264 format. * Transcript can be in .vtt, .json format. * In general, when your object size reaches 2 GB, you should use multipart uploads instead of uploading the object in a single operation. * The caller must be a iq_listened user. * For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the Edit permission for All Conversations. *

Scopes: iq_conversation:write:admin,iq_conversation:write

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "part_number_etag": { "part_number": "<integer>", "etag": "<string>" } }



Curl
curl -X POST 'https://api.zoom.us/v2/iq/files/multipart' -H 'Content-Type: multipart/form-data' -H 'Accept: application/json' -F '{"name"=>"file", "value"=>"<string>", "datatype"=>"string"}=' -F '{"name"=>"part_number", "value"=>"<integer>", "datatype"=>"string"}=' -F '{"name"=>"upload_context", "value"=>"<string>", "datatype"=>"string"}='

ENDPOINTS