lr.cyberarkGetVault

Queries a protected password in a CyberArk Vault and Safe, and saves it to a parameter.

Syntax

 lr.cyberarkGetVault(object);

Arguments

NameComments
ServerUrl URL for the web request.
CertPathThe path for the certificate.
KeyPath (Optional) The path for a private key.
Password(Optional) The password for the private key.
AppIDThe application ID to use for the web request.
SafeThe safe on CyberArk in which the application belongs.
AccountNameThe Object Name of the account (referred to as Name in the account properties).
ExtraQueryData

(Optional) Extra data for the query (if any) should be in key=value format.

ResultParamNameParameter name where the token (the secret password) will be saved.

Return Values

Returns 0 on success, or 1 for an error.

Parameterization

All string input arguments can be passed using standard parameterization.

General Information

The certificate and private key must be in PEM format.

Example

Copy code
cyberarkGetVault({object}); 
javascript object 
        {
        serverUrl: 'https://test.skytap.com/AIMWebService/api/Accounts',
        certPath: 'D:\\feature\\cyberark\\Certs needed to make CCP call\\client_1-28.crt',
        keyPath: 'D:\\feature\\cyberark\\Certs needed to make CCP call\\client.pem',
        password: 'Cyberark1',
        appID: 'testappid',
        safe: 'Test',
        accountName: 'testobject',
        resultParamName: 'TEST'
        });