Skip to main content

Filtering

Serveral endpoints support filtering to retrieve only the data you need. For example, you can filter verifications by status:
GET /verification/v1/verifications?filter[status]=verified
Individual endpoints support filtering different fields. Check the documentation for the specific endpoint you are working with.

Sorting

You can sort endpoint results by passing the sort parameter. Provide a comma-separated list of fields to sort by.
GET /management/v1/entities?sort=name
To reverse the sort order, prefix the field with a hyphen (-):
GET /management/v1/entities?sort=-name
Individual endpoints support sorting different fields. Check the documentation for the specific endpoint you are working with.