POST SecretStore/OrphanLookup
Returns the IDs of Secret Store vault entries that have no owner.
Requirements
- Permissions: The caller must have Master Admin permission.
- Token scope: Restricted
Headers
-
Content type: Content-Type:application/json.
- Token: The bearer access token that you received. For example, Authorization:Bearer 4MyGeneratedBearerTknz==. For more information, see Passing a bearer token in your API calls.
Parameters
|
Name |
Description |
|---|---|
| VaultType | The SecretStore Vault Type. |
Returns
|
Name |
Description |
|---|---|
|
Result |
A number indicating the status:
|
|
VaultIDs |
An array of vault IDs that are orphaned vault entries. If the array is empty, there are no orphans for the VaultType. |
Example
Request
POST https://tpp.venafi.example/vedsdk/SecretStore/OrphanLookup
Authorization:Bearer 4MyGeneratedBearerTknz==
{
"VaultType":4
}
Response
HTTP/1.1 200 OK
{
"Result":0,
"VaultIDs":[
469,
466
]
}