Filtering
Several endpoints support filtering to allow you to retrieve only the data you need. For example, you can filter incidents by status:Each endpoint may support different fields for filtering. Check the documentation for the specific endpoint you are working with.
Including related resources
Many endpoints can embed related resources in the response using theinclude parameter. Pass a comma-separated list
of the relationships you want to include:
Each endpoint supports a different set of includes. Check the documentation for the specific endpoint you are
working with.
Filtering by metadata
Resources that support metadata can be filtered by their metadata keys using thefilter[meta][key] syntax:
Sorting
You can sort the results of an endpoint by passing thesort parameter. The sort parameter should be a comma-separated list of fields to sort by. You can also specify the sort order by appending asc or desc to the field name.
Each endpoint may support different fields for sorting. Check the documentation for the specific endpoint you are working with.