Filter Failed Tasks
Testing
Request
Body Params application/json
{
"ids": [
"string"
],
"types": [
"string"
],
"statuses": [
"string"
],
"updatedBy": [
"string"
],
"createdBy": [
"string"
],
"limit": 0,
"offset": 0,
"sort": "string"
}
Request Code Samples
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
application/json {
"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