{ "opencollection": "1.0.0", "info": { "name": "Benchling AA Sequences Workflow Tasks API", "version": "2.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Workflow Tasks", "type": "folder" }, "items": [ { "info": { "name": "List workflow tasks", "type": "http" }, "http": { "method": "GET", "url": "/api/v2/workflow-tasks", "params": [ { "name": "ids", "value": "", "type": "query", "description": "Comma separated list of workflow task IDs" }, { "name": "workflowTaskGroupIds", "value": "", "type": "query", "description": "Comma separated list of workflow IDs" }, { "name": "schemaId", "value": "", "type": "query", "description": "The ID of the workflow task schema of the workflow task" }, { "name": "statusIds", "value": "", "type": "query", "description": "Comma separated list of workflow task status ids" }, { "name": "assigneeIds", "value": "", "type": "query", "description": "Comma separated list of user ids or \"null\"" }, { "name": "watcherIds", "value": "", "type": "query", "description": "Comma separated list of user IDs or \"null\"" }, { "name": "responsibleTeamIds", "value": "", "type": "query", "description": "Comma separated list of team IDs or \"null\"" }, { "name": "executionOriginIds", "value": "", "type": "query", "description": "Comma separated list of entry IDs" }, { "name": "executionTypes", "value": "", "type": "query", "description": "Comma separated list of workflow execution types. Acceptable execution types are \"DIRECT\" and \"ENTRY\"\n" }, { "name": "linkedItemIds.anyOf", "value": "", "type": "query", "description": "Comma separated list of bioentity or storable IDs. Maximum of 100. Returns workflow tasks where the task's schema fields reference at least one of the provided items.\n" }, { "name": "linkedItemIds.allOf", "value": "", "type": "query", "description": "Comma separated list of bioentity or storable IDs. Returns workflow tasks where the task's schema fields reference all of the provided items.\n" }, { "name": "linkedItemIds.noneOf", "value": "", "type": "query", "description": "Comma separated list of bioentity or storable IDs. Returns workflow tasks where the task's schema fields do not reference any of the provided items.\n" }, { "name": "schemaFields", "value": "", "type": "query", "description": "Filter based on schema field value (not display value). Restricts results to those with a field whose value matches the filter. For Integer, Float, and Date type fields, supports the >= and <= operators (but not < or >). If any schemaField filters are present, the schemaId param must also be present. Note that all operators must be separated from any values by a single space.\n" }, { "name": "name", "value": "", "type": "query", "description": "The name of the workflow task" }, { "name": "nameIncludes", "value": "", "type": "query", "description": "Part of the name of the workflow task" }, { "name": "creatorIds", "value": "", "type": "query", "description": "Comma separated list of user IDs." }, { "name": "scheduledOn", "value": "", "type": "query", "description": "The date on which the task was scheduled to be executed. Returns tasks which are scheduled on the provided date. If \"null\" is provided returns tasks which are unshceduled.\n" }, { "name": "scheduledOn.lt", "value": "", "type": "query", "description": "The date on which the task was scheduled to be executed. Returns tasks which are scheduled before the provided date.\n" }, { "name": "scheduledOn.lte", "value": "", "type": "query", "description": "The date on which the task was scheduled to be executed. Returns tasks which are scheduled before or on the provided date.\n" }, { "name": "scheduledOn.gte", "value": "", "type": "query", "description": "The date on which the task was scheduled to be executed. Returns tasks which are scheduled on or after the provided date.\n" }, { "name": "scheduledOn.gt", "value": "", "type": "query", "description": "The date on which the task was scheduled to be executed. Returns tasks which are scheduled after the provided date.\n" }, { "name": "modifiedAt", "value": "", "type": "query", "description": "Datetime, in RFC 3339 format. Supports the > and < operators. Time zone defaults to UTC. Restricts results to those modified in the specified range. e.g. > 2017-04-30. Date ranges can be specified with the following nomenclature > YYYY-MM-DD AND