Vaults
Management and discovery of external authenticated vaults.
Returns a list of authenticated vaults available for the target Edge site.
Collibra REST API authentication using Basic Authentication.
Edge site ID. You can find this value in the Edge site details page in Edge Management within your Collibra Platform instance.
{"summary":"Edge site ID","value":"123e4567-e89b-12d3-a456-426614174000"}Success
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.
Bad request — invalid input or validation error.
Unauthorized — authentication is required or the provided credentials are invalid.
Forbidden — insufficient permissions.
Site not found.
Unexpected error.
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?