{ "opencollection": "1.0.0", "info": { "name": "OpenMetadata APIs Agent Executions Worksheets API", "version": "1.13" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Worksheets", "type": "folder" }, "items": [ { "info": { "name": "Add a follower", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/drives/worksheets/:id/followers", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a user identified by `userId` as follower of this worksheet" }, { "info": { "name": "Bulk create or update worksheets", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/drives/worksheets/bulk", "params": [ { "name": "async", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create or update multiple worksheets in a single operation." }, { "info": { "name": "List worksheets", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/drives/worksheets", "params": [ { "name": "fields", "value": "", "type": "query", "description": "Fields requested in the returned resource" }, { "name": "service", "value": "", "type": "query", "description": "Filter worksheets by service name" }, { "name": "spreadsheet", "value": "", "type": "query", "description": "Filter worksheets by spreadsheet fully qualified name" }, { "name": "limit", "value": "", "type": "query", "description": "Limit the number worksheets returned. (1 to 1000000, default = 10)" }, { "name": "before", "value": "", "type": "query", "description": "Returns list of worksheets before this cursor" }, { "name": "after", "value": "", "type": "query", "description": "Returns list of worksheets after this cursor" }, { "name": "include", "value": "", "type": "query", "description": "Include all, deleted, or non-deleted entities." } ] }, "docs": "Get a list of worksheets, optionally filtered by `service` or `spreadsheet` 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 worksheet", "type": "http" }, "http": { "method": "POST", "url": "/api/v1/drives/worksheets", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new worksheet under an existing `spreadsheet`." }, { "info": { "name": "Create or update a worksheet", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/drives/worksheets", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new worksheet, if it does not exist or update an existing worksheet." }, { "info": { "name": "Get a worksheet by fully qualified name", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/drives/worksheets/name/:fqn", "params": [ { "name": "fqn", "value": "", "type": "path", "description": "Fully qualified name of the worksheet" }, { "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 worksheet by fully qualified name." }, { "info": { "name": "Update a worksheet by name.", "type": "http" }, "http": { "method": "PATCH", "url": "/api/v1/drives/worksheets/name/:fqn", "params": [ { "name": "fqn", "value": "", "type": "path", "description": "Name of the worksheet" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing worksheet using JsonPatch." }, { "info": { "name": "Delete a worksheet by fully qualified name", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/drives/worksheets/name/:fqn", "params": [ { "name": "hardDelete", "value": "", "type": "query", "description": "Hard delete the entity. (Default = `false`)" }, { "name": "fqn", "value": "", "type": "path", "description": "Fully qualified name of the worksheet" } ] }, "docs": "Delete a worksheet by `fullyQualifiedName`." }, { "info": { "name": "Get a worksheet by Id", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/drives/worksheets/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" }, { "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 worksheet by `Id`." }, { "info": { "name": "Update a worksheet", "type": "http" }, "http": { "method": "PATCH", "url": "/api/v1/drives/worksheets/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing worksheet using JsonPatch." }, { "info": { "name": "Delete a worksheet by Id", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/drives/worksheets/:id", "params": [ { "name": "hardDelete", "value": "", "type": "query", "description": "Hard delete the entity. (Default = `false`)" }, { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" } ] }, "docs": "Delete a worksheet by `Id`." }, { "info": { "name": "Asynchronously delete a worksheet by Id", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/drives/worksheets/async/:id", "params": [ { "name": "hardDelete", "value": "", "type": "query", "description": "Hard delete the entity. (Default = `false`)" }, { "name": "recursive", "value": "", "type": "query", "description": "Recursively delete related entities. (Default = `false`)" }, { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" } ] }, "docs": "Asynchronously delete a worksheet by `Id`." }, { "info": { "name": "Remove a follower", "type": "http" }, "http": { "method": "DELETE", "url": "/api/v1/drives/worksheets/:id/followers/:userId", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" }, { "name": "userId", "value": "", "type": "path", "description": "Id of the user being removed as follower" } ] }, "docs": "Remove the user identified `userId` as a follower of the worksheet." }, { "info": { "name": "Get a specific version of the worksheet", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/drives/worksheets/:id/versions/:version", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" }, { "name": "version", "value": "", "type": "path", "description": "Worksheet version number in the form `major`.`minor`" } ] }, "docs": "Get a specific version of the worksheet identified by `Id`" }, { "info": { "name": "List all entity versions within a time range", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/drives/worksheets/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 worksheet versions", "type": "http" }, "http": { "method": "GET", "url": "/api/v1/drives/worksheets/:id/versions", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" } ] }, "docs": "Get a list of all the versions of a worksheet identified by `Id`" }, { "info": { "name": "Restore a soft deleted worksheet by id", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/drives/worksheets/restore", "body": { "type": "json", "data": "{}" } }, "docs": "Restore a soft deleted worksheet by id." }, { "info": { "name": "Update Vote for a worksheet", "type": "http" }, "http": { "method": "PUT", "url": "/api/v1/drives/worksheets/:id/vote", "params": [ { "name": "id", "value": "", "type": "path", "description": "Id of the worksheet" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update vote for a worksheet" } ] } ], "bundled": true }