Search activities by complex criteria
POST/activities/searches
- no resources created: Returns all activities matching the query passed as request input payload.
Request
Query Parameters
The limit used for this page of results. This will be the same as the limit query parameter unless it exceeded the maximum value allowed for this API endpoint
The offset used for this page of results
Indicate sort by field
Possible values: [ASC
, DESC
]
Indicate sorting direction
- application/json
Body
Array [
]
search_criterias
object[]
required
search by field
Possible values: [EQ
, NE
, CNT
, NON_CNT
, BTW
, IN
]
operation to perform for the filter
search value
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
The offset used for this page of results.
The limit used for this page of results. This will be the same as the limit query parameter unless it exceeded the maximum value allowed for this API endpoint.
One greater than the offset of the last item in the entire collection. The total number of items in the collection may be less than total_count.
Field to define the sort field.
Possible values: [ASC
, DESC
]
To indicate sorting direction. Ascending or Descending.
items
object[]
required
Possible values: >= 1
Possible values: >= 1
Possible values: >= 1
details
object
history
object[]
{
"offset": 0,
"limit": 0,
"total_count": 0,
"sort": "string",
"order": "ASC",
"items": [
{
"id": 0,
"created_at": "2024-10-07T13:47:24.592Z",
"event_name": "string",
"object_id": 0,
"object_name": "string",
"object_type": "string",
"project_id": 0,
"project_name": "string",
"subject_name": "string",
"subject_type": "string",
"details": {
"history": [
{
"field": "string",
"old_value": "string",
"new_value": "string"
}
]
}
}
]
}