getCredentials

Back to index

Summary

Retrieves all credentials in a project.
projectName
Stringrequired
The name for the project that must be unique among all projects.
includeHidden
Booleanoptional
If true, return only credentials explicitly created by a user and not credentials that are automatically created. For example, for plugin configurations.
usableOnly
Booleanoptional
If true, return only those credentials which the current user has the execute privilege on.

Usage

Perl

$cmdr->getCredentials( "test-projectName" # projectName # optionals );

ectool

ectool getCredentials \ "test-projectName" `# projectName` \ # optionals

Examples

Perl

$cmdr->getCredentials("Default", {usableOnly => 1});

ectool

ectool getCredentials "Default" --usableOnly 1