Skip to main content
GET
/
api
/
workspaces
/
{id}
/
tasks
List tasks for a workspace.
curl --request GET \
  --url https://api.rigbox.dev/api/workspaces/{id}/tasks \
  --header 'Authorization: Bearer <token>'
{
  "tasks": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "priority": "<string>",
      "status": "<string>",
      "title": "<string>",
      "type": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "user_id": "<string>",
      "workspace_id": "<string>",
      "implementer": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Workspace ID

Response

200 - application/json

Workspace tasks

tasks
object[]
required