{ "opencollection": "1.0.0", "info": { "name": "OpenMetadata APIs Agent Executions API Collections API", "version": "1.13" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "API Collections", "type": "folder" }, "items": [ { "info": { "name": "Bulk create or update API collections", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/apiCollections/bulk", "params": [ { "name": "async", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create or update multiple API collections in a single operation. Returns a BulkOperationResult with success/failure details for each API collection." }, { "info": { "name": "List API Collections", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/apiCollections", "params": [ { "name": "fields", "value": "", "type": "query", "description": "Fields requested in the returned resource" }, { "name": "service", "value": "", "type": "query", "description": "Filter APICollection by service name" }, { "name": "limit", "value": "", "type": "query", "description": "Limit the number APICollections returned. (1 to 1000000, default = 10)" }, { "name": "before", "value": "", "type": "query", "description": "Returns list of API Collections before this cursor" }, { "name": "after", "value": "", "type": "query", "description": "Returns list of API Collections after this cursor" }, { "name": "include", "value": "", "type": "query", "description": "Include all, deleted, or non-deleted entities." } ] }, "docs": "Get a list of API Collections, optionally filtered by `service` it belongs to. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params." }, { "info": { "name": "Create a APICollection", "type": "http" }, "http": { "method": "POST", "url": "/api/v1/apiCollections", "body": { "type": "json", "data": "{}" } }, "docs": "Create a APICollection under an existing `service`." }, { "info": { "name": "Create or update API Collection", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/apiCollections", "body": { "type": "json", "data": "{}" } }, "docs": "Create a API Collection, if it does not exist or update an existing API Collection." }, { "info": { "name": "Get a APICollection by fully qualified name", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/apiCollections/name/:fqn", "params": [ { "name": "fqn", "value": "", "type": "path", "description": "Fully qualified name of the APICollection" }, { "name": "fields", "value": "", "type": "query", "description": "Fields requested in the returned resource" }, { "name": "include", "value": "", "type": "query", "description": "Include all, deleted, or non-deleted entities." }, { "name": "includeRelations", "value": "", "type": "query", "description": "Per-relation include control. Format: field:value,field2:value2. Example: owners:non-deleted,followers:all. Valid values: all, deleted, non-deleted. If not specified for a field, uses the entity's include value." } ] }, "docs": "Get a APICollection by `fullyQualifiedName`." }, { "info": { "name": "Update a APICollection by name.", "type": "http" }, "http": { "method": "PATCH", "url": "/api/v1/apiCollections/name/:fqn", "params": [ { "name": "fqn", "value": "", "type": "path", "description": "Name of the API Collection" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing APICollection using JsonPatch." }, { "info": { "name": "Delete a API Collection by fully qualified name", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/apiCollections/name/:fqn", "params": [ { "name": "hardDelete", "value": "", "type": "query", "description": "Hard delete the entity. (default = `false`)" }, { "name": "recursive", "value": "", "type": "query", "description": "Recursively delete this entity and it's children. (default `false`)" }, { "name": "fqn", "value": "", "type": "path", "description": "Fully qualified name of the APICollection" } ] }, "docs": "Delete a API Collection by `fullyQualifiedName`. API Collection can only be deleted if it has no API Endpoints." }, { "info": { "name": "Get a API Collection by Id", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/apiCollections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the APICollection" }, { "name": "fields", "value": "", "type": "query", "description": "Fields requested in the returned resource" }, { "name": "include", "value": "", "type": "query", "description": "Include all, deleted, or non-deleted entities." }, { "name": "includeRelations", "value": "", "type": "query", "description": "Per-relation include control. Format: field:value,field2:value2. Example: owners:non-deleted,followers:all. Valid values: all, deleted, non-deleted. If not specified for a field, uses the entity's include value." } ] }, "docs": "Get a API Collection by `Id`." }, { "info": { "name": "Update a API Collection by Id", "type": "http" }, "http": { "method": "PATCH", "url": "/api/v1/apiCollections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the API Collection" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing API Collection using JsonPatch." }, { "info": { "name": "Delete a API Collection by Id", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/apiCollections/:id", "params": [ { "name": "recursive", "value": "", "type": "query", "description": "Recursively delete this entity and it's children. (default `false`)" }, { "name": "hardDelete", "value": "", "type": "query", "description": "Hard delete the entity. (default = `false`)" }, { "name": "id", "value": "", "type": "path", "description": "Id of the APICollection" } ] }, "docs": "Delete a API Collection by `Id`. API Collection can only be deleted if it has no tables." }, { "info": { "name": "Asynchronously delete a API Collection by Id", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/apiCollections/async/:id", "params": [ { "name": "recursive", "value": "", "type": "query", "description": "Recursively delete this entity and it's children. (default `false`)" }, { "name": "hardDelete", "value": "", "type": "query", "description": "Hard delete the entity. (default = `false`)" }, { "name": "id", "value": "", "type": "path", "description": "Id of the APICollection" } ] }, "docs": "Asynchronously delete a API Collection by `Id`. API Collection can only be deleted if it has no tables." }, { "info": { "name": "Get a version of the APICollection", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/apiCollections/:id/versions/:version", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the APICollection" }, { "name": "version", "value": "", "type": "path", "description": "APICollection version number in the form `major`.`minor`" } ] }, "docs": "Get a version of the APICollection by given `Id`" }, { "info": { "name": "List all entity versions within a time range", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/apiCollections/history", "params": [ { "name": "startTs", "value": "", "type": "query", "description": "Start timestamp in milliseconds since epoch" }, { "name": "endTs", "value": "", "type": "query", "description": "End timestamp in milliseconds since epoch" }, { "name": "limit", "value": "", "type": "query", "description": "Limit the number of entity returned (1 to 1000000, default = 10)" }, { "name": "before", "value": "", "type": "query", "description": "Returns list of entity versions before this cursor" }, { "name": "after", "value": "", "type": "query", "description": "Returns list of entity versions after this cursor" } ] }, "docs": "Get a paginated list of all entity versions within a given time range specified by `startTs` and `endTs` in milliseconds since epoch. " }, { "info": { "name": "List API Collection versions", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/apiCollections/:id/versions", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the API Collection" } ] }, "docs": "Get a list of all the versions of a API Collection identified by `Id`" }, { "info": { "name": "Restore a soft deleted API Collection.", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/apiCollections/restore", "body": { "type": "json", "data": "{}" } }, "docs": "Restore a soft deleted API Collection." }, { "info": { "name": "Update Vote for a API Collection", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/apiCollections/:id/vote", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the Entity" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update vote for a API Collection" } ] } ], "bundled": true }