/mcpRequest URI: POST https://<connection-server>/vmrest/mailboxstores Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "DisplayName":"Unity Messaging Database", "MaxSizeMB":"15000" } The following is the response from the above POST request and the actual response will depend upon the information given by you: Response Code: 201 /vmrest/voicemailboxstores /2668cf73-c234-4fb4-82e1-8b7299485b3ce Updating the Mailbox Stores The following is an example of the PUT request that allows you to update the content of the mailbox store: PUT https://<connection-server>/vmrest/mailboxstores/<mailboxstore-objectid> Request Body: <MailboxStore> <Mounted>false</Mounted> </MailboxStore> </pre <pre> Response Body: 204 The output for this request returns the successful response code. JSON Example To update mounted field of mailbox store, do the following: Request URI: PUT https://<connection-server>/vmrest/mailboxstores/<mailboxstore-objectid> Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "Mounted":"false" } 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 Deleting the Mailbox Store The following is an example of the DELETE request that deletes a specific mailbox store where you need to mention the mailbox store object ID: DELETE https://<connection-server>/vmrest/mailboxstores/<mailboxstore-objectid Cisco Unity Connection Provisioning Interface (CUPI) API 589 Cisco Unity Connection Provisioning Interface (CUPI) API--Message Aging Policy APIs Updating the Mailbox Stores