Get Manifests
machship_get_manifestsRetrieve a paginated list of manifests for carrier pickup bookings, filterable by date range, carrier, and company. Returns manifest IDs, dates, carrier names, statuses, and consignment counts.
Instructions
Returns a paginated list of manifests for a company (max 200 per call). A manifest represents a carrier pickup booking for a group of consignments.
Args:
companyId (number, optional): Company ID
startIndex (number, optional): Pagination start index (default 1)
retrieveSize (number, optional): Number to retrieve (default 40, max 200)
carrierId (number, optional): Filter by carrier
includeChildCompanies (boolean, optional): Include sub-companies
startDate / endDate (string, optional): Date range filter (ISO 8601)
response_format ('json' | 'markdown'): Output format (default: 'json')
Returns: Array of manifest summary objects: { "id": number, "manifestDate": string, "carrierName": string, "status": string, "consignmentCount": number }
Examples:
Use when: "List today's manifests" -> set startDate/endDate to today
Use when: You need a manifestId to download a manifest PDF
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | No | Company ID | |
| startIndex | No | ||
| retrieveSize | No | ||
| carrierId | No | ||
| includeChildCompanies | No | ||
| startDate | No | Filter from date (ISO 8601) | |
| endDate | No | Filter to date (ISO 8601) | |
| response_format | No | Output format: 'json' (default) or 'markdown' | json |