[Service] Tracker
  1. for-patient
[Service] Tracker
  • tracker-api
    • for-patient
      • Record multiple symptoms
        POST
      • Filter tasks
        POST
      • Filter Failed Tasks
        POST
      • Read Multi Task
        PUT
      • Find Active Instances
        GET
      • Load Severity Trend Data
        GET
      • Find symptoms by ctcae codes and severity
        GET
      • Onboard
        POST
      • Close tracker
        PUT
    • for-internal
      • tracker
        • Submit an on-going task
        • Update task
        • Resolve
        • Find Active Instances
      • 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. for-patient

Filter Failed Tasks

Testing
tracker - local
http://localhost:8081/
tracker - local
http://localhost:8081/
POST
api/users/v1/trackers/{trackerId}/instances/{instanceId}/tasks/filter

Request

Path Params

Header Params

Body Params application/json

Example
{
    "ids": [
        "string"
    ],
    "types": [
        "string"
    ],
    "statuses": [
        "string"
    ],
    "updatedBy": [
        "string"
    ],
    "createdBy": [
        "string"
    ],
    "limit": 0,
    "offset": 0,
    "sort": "string"
}

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 POST 'http://localhost:8081/api/users/v1/trackers//instances//tasks/filter' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ids": [
        "string"
    ],
    "types": [
        "string"
    ],
    "statuses": [
        "string"
    ],
    "updatedBy": [
        "string"
    ],
    "createdBy": [
        "string"
    ],
    "limit": 0,
    "offset": 0,
    "sort": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "tasks": [
            {
                "id": "string",
                "type": "SYMPTOM_RECORDER",
                "status": "UNREAD",
                "input": {},
                "output": {},
                "createdAt": "2023-12-23 12:05:00",
                "updatedAt": "2023-12-23 15:05:00",
                "createdBy": "string",
                "updatedBy": "string"
            }
        ]
    }
}
Modified at 2024-03-23 16:12:39
Previous
Filter tasks
Next
Read Multi Task
Built with