McDewey

Multi-vendor documentation library · semantic search · MCP endpoint at /mcp

Page 714

↗ View in doc context
page
714
source
unity-connection/rest-api/cupi/cupi.md
chunk_id
unity-connection::rest-api::cupi::cupi::678

Updating a Restriction Table Parameters The following is an example of the PUT request that allows you to update the parameters of the restriction tables: PUT https://<connection-server>/vmrest/restrictiontables/<restrictiontableobjectid> Example 1: Update display name of restriction table Request Body: <RestrictionTable> <DisplayName>Texoma_123</DisplayName> </RestrictionTable> Response Code: 204 JSON Example To update display name of restriction table, do the following: Request URI: PUT https://<connection-server>/vmrest/restrictiontables/<restrictiontableobjectid> Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "DisplayName": "Texoma_123" } The following is the response from the above PUT request and the actual response will depend upon the information given by you: Response Code: 204 Example 2: Update maximum and minimum digits of restriction table Request Body: <RestrictionTable> <DisplayName>Texoma Restriction Table_7</DisplayName> <MinDigits>241</MinDigits> //Minimum digit range is 1-300, it should not exceed above 300 <MaxDigits>256</MaxDigits> //Maximum digit range is 1-300, it should not exceed above 300 </RestrictionTable> Response Code: 204 Example 3: Update default blocked parameter Request Body: <RestrictionTable> <DefaultBlocked>true</DefaultBlocked> </RestrictionTable> Response Code: 204 Cisco Unity Connection Provisioning Interface (CUPI) API 682 Cisco Unity Connection Provisioning Interface (CUPI) API for System Settings Updating a Restriction Table Parameters