Dear, when I execute the query, for example:
{
"filters": [
{
"conditions": [
{
"method": "equals",
"field_name": "incident_type_ids",
"value": 1003
},
{
"field_name": "create_date",
"method": "gte",
"value": 1514823275000
},
{
"field_name": "create_date",
"method": "lte",
"value": 1554091200000
}
]
}
],
"sorts": [
{
"field_name": "plan_status",
"type": "desc"
}
],
"start": 0,
"length": 0,
"recordsTotal": 0
}
The response is:
{
"recordsTotal": 3,
"recordsFiltered": 3,
"data": [
{
"name": "Test Training",
"description": "<div>This is a test</div>",
"phase_id": 1004,
"inc_training": false,
"id": 5418,
"discovered_date": 1541597327000,
"due_date": null,
"create_date": 1541597327000,
"owner_id": 1,
"severity_code": null,
"plan_status": "C"
}
]
}
How can I add more fields to the answer? fields like "incident type" or custom fields.
Thank you
------------------------------
Juan Cruz Del Col
------------------------------