[Service] Tracker
  1. tracker
[Service] Tracker
  • tracker-api
    • for-patient
      • Record multiple symptoms
      • Filter tasks
      • Filter Failed Tasks
      • Read Multi Task
      • Find Active Instances
      • Load Severity Trend Data
      • Find symptoms by ctcae codes and severity
      • Onboard
      • Close tracker
    • for-internal
      • tracker
        • Submit an on-going task
          POST
        • Update task
          PATCH
        • Resolve
          PUT
        • Find Active Instances
          GET
      • patient
        • Find Patient Severities
        • Load Severity Trend Data
        • Find Patient Symptoms
        • Reset patient
      • treatment
        • Sync PIL Codes with their side effects
      • symptom
        • Upsert Multiple Symptoms
      • message
        • Filter Messages
        • Upsert Multiple Messages
    • system
      • Get system version
  • dataflow
    • for-patient
      • Start an Instance
      • Throw Message
    • for-internal
      • Upsert a Process
  1. tracker

Update task

Deprecated
tracker - local
http://localhost:8081/
tracker - local
http://localhost:8081/
PATCH
api/internal/v1/trackers/{trackerId}/instances/{instanceId}/tasks/{taskId}

Request

Path Params

Header Params

Body Params application/json

Example
{
    "status": "READ"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'http://localhost:8081/api/internal/v1/trackers//instances//tasks/' \
--header 'username: content-synchronizer' \
--header 'password: 5BW9ow4COZOaz5eIj81Ot27LhwFH4EMO' \
--header 'Content-Type: application/json' \
--data-raw '{
    "status": "READ"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "id": "string",
        "type": "string",
        "status": "string",
        "input": "string",
        "output": "string",
        "createdAt": "string",
        "updatedAt": "string",
        "createdBy": "string",
        "updatedBy": "string"
    }
}
Modified at 2024-08-14 00:58:33
Previous
Submit an on-going task
Next
Resolve
Built with