Skip to main content
GET
/
tasks
/
{id}
Get a task
curl --request GET \
  --url https://api.chooseserene.com/tasks/{id}
{
  "id": 1,
  "accountId": 1,
  "task_number": 1,
  "status": "pending",
  "handler": "submit_claim_1",
  "title": "Submit claim #1",
  "instructions": "SOP: Log in to portal, open claim form, enter member and procedure details, submit and capture confirmation number.",
  "startedAt": null,
  "completedAt": null,
  "failedAt": null,
  "notes": null,
  "createdAt": "2025-03-18T12:00:00.000Z",
  "updatedAt": "2025-03-18T12:00:00.000Z"
}

Path Parameters

id
integer
required

Task ID

Response

Task

id
integer

Task ID

accountId
integer
task_number
integer
status
enum<string>
Available options:
pending,
dispatching,
running,
waiting_for_input,
pending_review,
completed,
completed_with_issues,
failed
handler
string
title
string
instructions
string
startedAt
string<date-time> | null
completedAt
string<date-time> | null
failedAt
string<date-time> | null
notes
string | null
createdAt
string<date-time>
updatedAt
string<date-time>