For the complete documentation index, see llms.txt. This page is also available as Markdown.

Vaults

Management and discovery of external authenticated vaults.

List vaults

get

Returns a list of authenticated vaults available for the target Edge site.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
siteIdstring · uuidRequired

Edge site ID. You can find this value in the Edge site details page in Edge Management within your Collibra Platform instance.

Example: {"summary":"Edge site ID","value":"123e4567-e89b-12d3-a456-426614174000"}
Responses
200

Success

application/json

List of vaults for a site. The number of vaults per site is expected to remain small and is typically less than 3, so the full list is always returned in a single response. Pagination is intentionally omitted.

get/sites/{siteId}/vaults
GET /rest/edge/v1/sites/{siteId}/vaults HTTP/1.1
Authorization: Basic username:password
Accept: */*
{
  "results": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "type": "text",
      "name": "text",
      "description": "text"
    }
  ]
}

Last updated

Was this helpful?