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.
Path parameters
-
id
integer Required The identifier of the entity definition. Only task definitions defined for the specified entity definition report details will be returned
GET
/cs-close-api/task-definitions/{id}/reporting-fields
curl \
--request GET 'http://close-service:8082/cs-close-api/task-definitions/{id}/reporting-fields'
Response examples (200)
{
"taskName": "string",
"userDefinedFields": [
{
"name": "string",
"value": {}
}
]
}