McDewey

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

Page 224

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

PUT http://<connection-server>/vmrest/alternatenames/<objectid> <?xml version="1.0" encoding="UTF-8"?> <AlternateName> <FirstName>Mick</FirstName> <LastName>Holebert</LastName> </AlternateName> Deleting The following is an example of a DELETE request that deletes an Alternate Name: DELETE http://<connection-server>/vmrest/alternatenames/<objectid> Cisco Unity Connection Provisioning Interface (CUPI) API -- Changing Passwords and Password Settings Changing a User's PIN A user's PIN is the password that a user must enter over the phone to sign in to their mailbox, so that they can listen to or send new messages by phone. To change a user's PIN you need the object ID of the user. The following example changes the user's PIN to 635241. PUT vmrest/users/<objectid>/credential/pin <?xml version="1.0" encoding="UTF-8"?> <Credential> <Credentials>635241</Credentials> </Credential> Changing a User's Password A user's password is the web application password required to interact with web applications, such as the PCA or the Inbox applications. The following example changes the user's password to My1stPassword. PUT vmrest/users/<objectid>/credential/password <?xml version="1.0" encoding="UTF-8"?> <Credential> <Credentials>My1stPassword</Credentials> </Credential> Setting the User Cannot Change Password Flag To configure a PIN or password so that the user cannot change it, use the CantChange element. Here is an example of changing a user's PIN such that the user cannot change it. Cisco Unity Connection Provisioning Interface (CUPI) API 192 Cisco Unity Connection Provisioning Interface (CUPI) API for User Account Settings Deleting