Saved Searches
Get saved search
Retrieve a saved search by ID. You can only retrieve saved searches that you own or that are public in your organization.
get/saved-searches/{id}
Path parameters
idstring uuid required
Saved search UUID
Response
Successful response
Example response
{
"object": "SAVED_SEARCH",
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Active Shipments - West Coast",
"preferenceType": "SHIPMENT",
"jsonValue": {
"searchCriteria": {
"filters": [
{
"field": "status",
"searchCriteria": {
"operator": "ONE_OF",
"values": [
"ACTIVE",
"PENDING"
]
}
}
]
},
"sorting": [
{
"id": "createdAt",
"desc": true
}
],
"columnVisibility": {
"status": true,
"createdAt": true
},
"columnOrder": [
"id",
"status",
"createdAt"
]
},
"isPublic": true,
"ownedByUser": "550e8400-e29b-41d4-a716-446655440001",
"createdAt": "2025-01-15T10:00:00Z",
"updatedAt": "2025-01-15T14:30:00Z"
}