Skip to main content
POST
Advanced Filtering
For complex queries, use the POST method with a JSON request body that provides greater expressiveness than query parameters.

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID

Request Body

filter
object
Filter conditions using operators
sort
array
Array of sort objects with field and order
lastKey
string
Pagination cursor from previous response
limit
number
default:"10"
Items per page (default: 10)

Example Request

Response

Returns paginated asset results matching the filter criteria.

Combined Approach

You can combine query parameters with a request body. Body filters take precedence when there are conflicts.

Code Examples