Skip to main content
GET
/
secret-providers
List secret provider connections
curl --request GET \
  --url https://api.cloudcruise.com/secret-providers \
  --header 'cc-key: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "provider_type": "1password",
    "name": "<string>",
    "config_hint": {},
    "cache_ttl_seconds": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]
Note:
  • Authenticated with your CloudCruise API key (cc-key header), the same as the rest of the Vault API.
  • Use a connection id from this response as secret_provider_id when creating or updating a vault entry. See the 1Password integration.
  • Connections are created and managed from the dashboard; this endpoint is read-only.

Authorizations

cc-key
string
header
required

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

Response

The workspace's secret-provider connections.

id
string<uuid>
required

Connection id. Use as secret_provider_id on a vault entry.

workspace_id
string<uuid>
required

The workspace this connection belongs to.

provider_type
enum<string>
required

The external secret provider.

Available options:
1password
name
string
required

Human-readable connection name.

config_hint
object
required

Non-sensitive hints about the connection (e.g. the last four characters of the service-account token).

cache_ttl_seconds
integer
required

Default duration (seconds) that resolved secrets are cached for entries bound to this connection.

created_at
string<date-time>
required
updated_at
string<date-time>
required