Tasuku
ReferenceAPI referenceWorkflows

List durable product-engineering work items

GET/organizations/{organization_id}/work-items

Authorization

tasuku_session<token>

In: cookie

Path Parameters

organization_id*string
Length1 <= length <= 128

Query Parameters

state?string

Value in

  • "OPEN"
  • "RUNNING"
  • "WAITING"
  • "COMPLETED"
  • "FAILED"
  • "CANCELLED"
cursor?string
page_size?integer
Range1 <= value <= 100
Default20

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/organizations/string/work-items"
{  "data": [    {      "id": "string",      "organization_id": "string",      "title": "string",      "kind": "QUESTION",      "state": "OPEN",      "phase": "INTAKE",      "waiting_reason": "CONTEXT",      "active_run_id": "string",      "available_actions": [        "APPROVE"      ],      "source": "GITHUB",      "primary_repository_id": "string",      "requested_by_login": "string",      "source_url": "http://example.com",      "summary": "string",      "completed_at": "2019-08-24T14:15:22Z",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "meta": {    "previous_cursor": "string",    "next_cursor": "string"  }}