Output options

In order to save resources and process requests more quickly, some requests return condensed representations of objects. Occasionally, requests return more data than you may require. You can specify the precise set of fields that the API should return for the objects by using output options.

You can use the includeFields query param to specify the default fields that you want to see as a part of the response body. To do so click on ADD STRING option under includeFields.

Syntax: includeFields=field1,field2,field3
Eg: includeFields=assignees,followers,startDateActual

You can choose multiple fields from a drop down with all the default as well as custom fields available

You can use the includeFields query param to specify the custom fields that you want to see as a part of the response body.

includeFields=fields.\<field_id>

  • If value is present:
"fields": [  
                {  
                    "fieldId": 144,  
                    "fieldLabel": "Group",  
                    "fieldValue": true  
                }  
            ]
  • If value is not present:
"fields": [  
                {  
                    "fieldId": 144,  
                    "fieldLabel": null,  
                    "fieldValue": null  
                }  
            ]