Skip to main content
GET
/
secret-providers
/
{id}
/
items
List secret provider items
curl --request GET \
  --url https://api.cloudcruise.com/secret-providers/{id}/items \
  --header 'cc-key: <api-key>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "vaultId": "<string>",
    "vaultName": "<string>",
    "ref": "<string>"
  }
]
Note:
  • Authenticated with your CloudCruise API key (cc-key header), the same as the rest of the Vault API.
  • Use an item’s ref as secret_ref when binding a vault entry to this connection.
  • Returns metadata only — secret values are never included.

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Path Parameters

id
string<uuid>
required

The secret-provider connection id (from GET /secret-providers).

Response

Items the connection can resolve.

id
string
required

Provider-native item id.

title
string
required

Item display name.

vaultId
string
required

Provider-native id of the vault containing the item.

vaultName
string
required

Display name of the vault containing the item.

ref
string
required

The reference to use as secret_ref on a vault entry (e.g. op://<vaultId>/<itemId>).