Including Related Data
Use the include query parameter to fetch related data alongside search results
Syntax
GET /{resource}/search?q=<query>&include=<relationship1>,<relationship2>Supported Endpoints
GET /orders/search
Relationship
Description
{
"data": {
"orders": [
{
"orderId": 5499760,
"companyId": 12345,
"requesterId": 500,
"poNumber": "PO-456",
"requesterName": "Jane Smith",
"statusName": "Processing",
"createdTimestamp": "2026-01-15T10:30:00Z"
}
],
"pagination": { "total": 1, "limit": 50, "offset": 0, "hasMore": false }
}
}Performance Considerations
Last updated

