Android / Zoom API / Update meeting recording settings
Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
CkHttpRequest req = new CkHttpRequest();
req.put_HttpVerb("PATCH");
req.put_Path("/v2/meetings/:meetingId/recordings/settings");
req.put_ContentType("multipart/form-data");
req.AddParam("share_recording","internally");
req.AddParam("recording_authentication","internallytrue");
req.AddParam("authentication_option","internallytrueDuis quis officia ad mollit");
req.AddParam("authentication_domains","internallytrueDuis quis officia ad mollitaute Ut");
req.AddParam("viewer_download","internallytrueDuis quis officia ad mollitaute Utfalse");
req.AddParam("password","internallytrueDuis quis officia ad mollitaute Utfalsenisi magn");
req.AddParam("on_demand","internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse");
req.AddParam("approval_type","internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1");
req.AddParam("send_email_to_host","internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1false");
req.AddParam("show_social_share_buttons","internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1falsefalse");
req.AddParam("topic","internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1falsefalsedolor minim voluptate labore irure");
req.AddHeader("Authorization","Bearer <access_token>");
CkHttpResponse resp = http.SynchronousRequest("api.zoom.us",443,true,req);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
int respStatusCode = resp.get_StatusCode();
Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
if (respStatusCode != 204) {
Log.i(TAG, "Response Header:");
Log.i(TAG, resp.header());
Log.i(TAG, "Response Body:");
Log.i(TAG, resp.bodyStr());
Log.i(TAG, "Failed.");
return;
}
Log.i(TAG, "Success.");
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
Curl Command
curl -X PATCH
-H "Authorization: Bearer <access_token>"
-H "Content-Type: multipart/form-data"
--form 'share_recording=internally'
--form 'recording_authentication=internallytrue'
--form 'authentication_option=internallytrueDuis quis officia ad mollit'
--form 'authentication_domains=internallytrueDuis quis officia ad mollitaute Ut'
--form 'viewer_download=internallytrueDuis quis officia ad mollitaute Utfalse'
--form 'password=internallytrueDuis quis officia ad mollitaute Utfalsenisi magn'
--form 'on_demand=internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse'
--form 'approval_type=internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1'
--form 'send_email_to_host=internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1false'
--form 'show_social_share_buttons=internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1falsefalse'
--form 'topic=internallytrueDuis quis officia ad mollitaute Utfalsenisi magnfalse1falsefalsedolor minim voluptate labore irure'
https://api.zoom.us/v2/meetings/:meetingId/recordings/settings
Postman Collection Item JSON
{
"name": "Update meeting recording settings",
"request": {
"auth": {
"type": "oauth2"
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "multipart/form-data"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "share_recording",
"value": "internally",
"description": "Determine how the meeting recording is shared. (This can only be one of publicly,internally,none)",
"type": "text"
},
{
"key": "recording_authentication",
"value": "true",
"description": "Only authenticated users can view.",
"type": "text"
},
{
"key": "authentication_option",
"value": "Duis quis officia ad mollit",
"description": "Authentication Options.",
"type": "text"
},
{
"key": "authentication_domains",
"value": "aute Ut",
"description": "Authentication domains.",
"type": "text"
},
{
"key": "viewer_download",
"value": "false",
"description": "Determine whether a viewer can download the recording file or not.",
"type": "text"
},
{
"key": "password",
"value": "nisi magn",
"description": "Enable password protection for the recording by setting a password. The password must have a minimum of **eight** characters with a mix of numbers, letters and special characters.<br><br>\n**Note:** If the account owner or the admin has set minimum password strength requirements for recordings via Account Settings, the password value provided here must meet those requirements. <br><br>If the requirements are enabled, you can view those requirements by calling either the [Get User Settings API](https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usersettings) or the [Get Account Settings](https://marketplace.zoom.us/docs/api-reference/zoom-api/accounts/accountsettings) API. ",
"type": "text"
},
{
"key": "on_demand",
"value": "false",
"description": "Determine whether registration isrequired to view the recording.",
"type": "text"
},
{
"key": "approval_type",
"value": "1",
"description": "Approval type for the registration.<br>\n`0`- Automatically approve the registration when a user registers.<br>\n`1` - Manually approve or deny the registration of a user.<br>\n`2` - No registration required to view the recording. (This can only be one of 0,1,2)",
"type": "text"
},
{
"key": "send_email_to_host",
"value": "false",
"description": "Send an email to host when someone registers to view the recording. This applies for On-demand recordings only.",
"type": "text"
},
{
"key": "show_social_share_buttons",
"value": "false",
"description": "Show social share buttons on registration page. This applies for On-demand recordings only.",
"type": "text"
},
{
"key": "topic",
"value": "dolor minim voluptate labore irure",
"description": "Name of the recording.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId/recordings/settings",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId",
"recordings",
"settings"
],
"variable": [
{
"key": "meetingId",
"value": "quis officia in reprehenderit",
"description": "(Required) To get Cloud Recordings of a meeting, provide the meeting ID or meeting UUID. If the meeting ID is provided instead of UUID,the response will be for the latest meeting instance. \n\nTo get Cloud Recordings of a webinar, provide the webinar ID or the webinar UUID. If the webinar ID is provided instead of UUID,the response will be for the latest webinar instance. \n\nIf a UUID starts with \"/\" or contains \"//\" (example: \"/ajXp112QmuoKj4854875==\"), you must **double encode** the UUID before making an API request. "
}
]
},
"description": "Update settings applied to a meeting's [Cloud Recording](https://support.zoom.us/hc/en-us/articles/203741855-Cloud-Recording)<br><br>\n**Scopes**: `recording:write:admin` `recording:write`<br>\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light` <br>"
},
"response": [
{
"name": "**HTTP Status Code:** `204` <br>\nMeeting recording setting's updated",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "share_recording",
"value": "internally",
"description": "Determine how the meeting recording is shared. (This can only be one of publicly,internally,none)",
"type": "text"
},
{
"key": "recording_authentication",
"value": "true",
"description": "Only authenticated users can view.",
"type": "text"
},
{
"key": "authentication_option",
"value": "Duis quis officia ad mollit",
"description": "Authentication Options.",
"type": "text"
},
{
"key": "authentication_domains",
"value": "aute Ut",
"description": "Authentication domains.",
"type": "text"
},
{
"key": "viewer_download",
"value": "false",
"description": "Determine whether a viewer can download the recording file or not.",
"type": "text"
},
{
"key": "password",
"value": "nisi magn",
"description": "Enable password protection for the recording by setting a password. The password must have a minimum of **eight** characters with a mix of numbers, letters and special characters.<br><br>\n**Note:** If the account owner or the admin has set minimum password strength requirements for recordings via Account Settings, the password value provided here must meet those requirements. <br><br>If the requirements are enabled, you can view those requirements by calling either the [Get User Settings API](https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usersettings) or the [Get Account Settings](https://marketplace.zoom.us/docs/api-reference/zoom-api/accounts/accountsettings) API. ",
"type": "text"
},
{
"key": "on_demand",
"value": "false",
"description": "Determine whether registration isrequired to view the recording.",
"type": "text"
},
{
"key": "approval_type",
"value": "1",
"description": "Approval type for the registration.<br>\n`0`- Automatically approve the registration when a user registers.<br>\n`1` - Manually approve or deny the registration of a user.<br>\n`2` - No registration required to view the recording. (This can only be one of 0,1,2)",
"type": "text"
},
{
"key": "send_email_to_host",
"value": "false",
"description": "Send an email to host when someone registers to view the recording. This applies for On-demand recordings only.",
"type": "text"
},
{
"key": "show_social_share_buttons",
"value": "false",
"description": "Show social share buttons on registration page. This applies for On-demand recordings only.",
"type": "text"
},
{
"key": "topic",
"value": "dolor minim voluptate labore irure",
"description": "Name of the recording.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId/recordings/settings",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId",
"recordings",
"settings"
],
"variable": [
{
"key": "meetingId",
"value": "quis officia in reprehenderit",
"description": "(Required) To get Cloud Recordings of a meeting, provide the meeting ID or meeting UUID. If the meeting ID is provided instead of UUID,the response will be for the latest meeting instance. \n\nTo get Cloud Recordings of a webinar, provide the webinar ID or the webinar UUID. If the webinar ID is provided instead of UUID,the response will be for the latest webinar instance. \n\nIf a UUID starts with \"/\" or contains \"//\" (example: \"/ajXp112QmuoKj4854875==\"), you must **double encode** the UUID before making an API request. "
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `404` <br>\nMeeting recording not found. ",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "share_recording",
"value": "internally",
"description": "Determine how the meeting recording is shared. (This can only be one of publicly,internally,none)",
"type": "text"
},
{
"key": "recording_authentication",
"value": "true",
"description": "Only authenticated users can view.",
"type": "text"
},
{
"key": "authentication_option",
"value": "Duis quis officia ad mollit",
"description": "Authentication Options.",
"type": "text"
},
{
"key": "authentication_domains",
"value": "aute Ut",
"description": "Authentication domains.",
"type": "text"
},
{
"key": "viewer_download",
"value": "false",
"description": "Determine whether a viewer can download the recording file or not.",
"type": "text"
},
{
"key": "password",
"value": "nisi magn",
"description": "Enable password protection for the recording by setting a password. The password must have a minimum of **eight** characters with a mix of numbers, letters and special characters.<br><br>\n**Note:** If the account owner or the admin has set minimum password strength requirements for recordings via Account Settings, the password value provided here must meet those requirements. <br><br>If the requirements are enabled, you can view those requirements by calling either the [Get User Settings API](https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usersettings) or the [Get Account Settings](https://marketplace.zoom.us/docs/api-reference/zoom-api/accounts/accountsettings) API. ",
"type": "text"
},
{
"key": "on_demand",
"value": "false",
"description": "Determine whether registration isrequired to view the recording.",
"type": "text"
},
{
"key": "approval_type",
"value": "1",
"description": "Approval type for the registration.<br>\n`0`- Automatically approve the registration when a user registers.<br>\n`1` - Manually approve or deny the registration of a user.<br>\n`2` - No registration required to view the recording. (This can only be one of 0,1,2)",
"type": "text"
},
{
"key": "send_email_to_host",
"value": "false",
"description": "Send an email to host when someone registers to view the recording. This applies for On-demand recordings only.",
"type": "text"
},
{
"key": "show_social_share_buttons",
"value": "false",
"description": "Show social share buttons on registration page. This applies for On-demand recordings only.",
"type": "text"
},
{
"key": "topic",
"value": "dolor minim voluptate labore irure",
"description": "Name of the recording.",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId/recordings/settings",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId",
"recordings",
"settings"
],
"variable": [
{
"key": "meetingId",
"value": "quis officia in reprehenderit",
"description": "(Required) To get Cloud Recordings of a meeting, provide the meeting ID or meeting UUID. If the meeting ID is provided instead of UUID,the response will be for the latest meeting instance. \n\nTo get Cloud Recordings of a webinar, provide the webinar ID or the webinar UUID. If the webinar ID is provided instead of UUID,the response will be for the latest webinar instance. \n\nIf a UUID starts with \"/\" or contains \"//\" (example: \"/ajXp112QmuoKj4854875==\"), you must **double encode** the UUID before making an API request. "
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}