/mcpResponse Code: 200 Viewing the Specific Restriction Pattern for a Particular Restriction Table The following is an example of the GET request that lists the details of specific restriction pattern represented by the provided value of object ID: GET https://<connection-server>/vmrest/restrictiontables/ <restrictiontableobjectid>/restrictionpatterns/<restrictiontableobjectid> The following is the response from the above GET request: <RestrictionPattern> <URI>/vmrest/restrictiontables/2c2c9504-8fb4-44e3-983c- 93eb4e20325c/restrictionpatterns/2c2c9504-8fb4-44e3-983c-93eb4e20325c</URI> <Blocked>false</Blocked> <NumberPattern></NumberPattern> <RestrictionTableObjectId>255bfdd2-5686-47f2-b40a- 320c194521ba</RestrictionTableObjectId> <RestrictionTableURI>/vmrest/restrictiontables/255bfdd2-5686-47f2-b40a- 320c194521ba</RestrictionTableURI> <SequenceNumber>1</SequenceNumber> <ObjectId>2c2c9504-8fb4-44e3-983c-93eb4e20325c</ObjectId> </RestrictionPattern> Response Code: 200 Creating a Restriction Pattern The following is an example of the POST request that creates a restriction pattern: POST https://<connectionserver>/ vmrest/restrictiontables/<restrictiontableobjectid>/restrictionpatterns Example 1: The following is the example of the create request from the above POST request. Request Body: <RestrictionPattern> <NumberPattern>#</NumberPattern> </RestrictionPattern> Response Code: 201 JSON Example To create new restriction pattern, do the following: Request URI: POST https://<connectionserver>/ vmrest/restrictiontables/<restrictiontableobjectid>/restrictionpatterns Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "NumberPattern": "*#" } The following is the response from the above POST request and the actual response will depend upon the information given by you: Cisco Unity Connection Provisioning Interface (CUPI) API 674 Cisco Unity Connection Provisioning Interface (CUPI) API for System Settings Viewing the Specific Restriction Pattern for a Particular Restriction Table