/mcpPOST https://<connection-server>/vmrest/ distributionlists/ef4aa84e-97c3-456e-848e-b162a04c9631/distributionlistmembers Request Body: <DistributionListMember> <MemberDistributionListObjectId>e030d111-d29e-4d11-93fa-4abe73bd50a0</MemberDistributionListObjectId> </DistributionListMember> Response Code: 201 JSON Example: To add a user or user template, do the following: Request URI: POST https://<connection-server>/vmrest/distributionlists/<distributionlistObjectId>/distributionlistmembers Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "MemberUserObjectId": "216c1a3e-7c0e-4527-aa9c-32b2683f04be" } 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 To add another distribution list as a member: POST https://<connection-server>/vmrest/distributionlists/ef4aa84e-97c3-456e-848e-b162a04c9631/distributionlistmembers Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "MemberDistributionListObjectId":"e030d111-d29e-4d11-93fa-4abe73bd50a0" } 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 Delete a Member from the Distribution List The following request can be used to delete a member from the distribution list: DELETE: https://<connection-server>/vmrest/distributionlists/<DistributionListObjectId>/distributionlistmembers/<distributionlistmemberObjectId> Response Code: 204 JSON Example: DELETE https://<connection-server>/vmrest/distributionlists/<DistributionListObjectId>/distributionlistmembers/<distributionlistmemberObjectId> Accept: application/json Connection: keep-alive Cisco Unity Connection Provisioning Interface (CUPI) API 456 Cisco Unity Connection Provisioning Interface (CUPI) API for Distribution List Delete a Member from the Distribution List