Skip to main content

Notify Vault Password Change

Notify the Server that a vault password for an endpoint has been changed.

POST https://instance.securid.com/aveksa/command.submit?cmd=notifyVaultPasswordChange

Request

Parameters

notifyVaultPasswordChange
format

properties - (Default) key=value. most useful when requesting a single object. If multiple objects are returned, values is a csv. ie key=value1,value2,value3 where value1 is the value for the first object, value2 is the value for the 2nd object, etc.

json - Useful format for parsing into javascript or other languages. See www.json.org for details.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Body

<VaultPasswordChange>
<type>CyberArk-CCP-1.1</type>
<uniqueId>
<safe>safe</safe>
<folder>folder</folder>
<object>object</object>
</uniqueId>
</VaultPasswordChange>
The Vault Type. Currently only CyberArk-CCP-1.1 is supported.

A xml payload consisting of the child elements that describes the uniqueness of the endpoint.

safeThe Safe value of the credential specified by CyberArk. Must be 28 characters or fewer.
folderThe Folder value of the credential specified by CyberArk. Must be 1024 characters or fewer.
objectThe Object Name value of the credential specified by CyberArk. Must be 1024 characters or fewer.

Response

Parameters

typeExecuted command name

Examples

Request

curl -L -X POST "https://instance.securid.com/aveksa/command.submit?cmd=notifyVaultPasswordChange" \
-H "Content-Type: application/xml" \
-H "Authorization: Bearer <token>" \
-d "<VaultPasswordChange>
<type>CyberArk-CCP-1.1</type>
<uniqueId>
<safe>OracleDB</safe>
<folder>Root</folder>
<object>oracle_prod</object>
</uniqueId>
</VaultPasswordChange>"

Response

{
"data": {
"type": "notifyVaultPasswordChange"
}
}