Gets the task reporting fields
To retrieve task reporting fields based on a task definition ID, you can query the database or an API with the specified ID, which will return the relevant task definition and its associated reporting fields. This allows you to access task-specific data for reporting purposes.
GET
/cs-close-api/task-definitions/{id}/reporting-fields
curl \
--request GET 'https://customer.trintech.com/cs-close-api/task-definitions/{id}/reporting-fields'
Response examples (200)
{
"taskName": "string",
"userDefinedFields": [
{
"name": "string",
"value": {}
}
]
}