Get All Shipment Line Items
get_all_shipment_line_itemsFetch paginated shipment line items across all shipments in a Procore project. Filter by vendor, status, destination, or date to retrieve full field sets for specific line items.
Instructions
Returns a paginated list of shipment line items across all shipments in the project. Supports view types: Normal (default), Mobile, and Id. The Mobile view also includes the remaining-to-be-received quantity. Use this when you already know which shipment line item you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted. Returns a single JSON object describing the shipment line item. Read-only — it changes nothing in Procore. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id, project_id. Procore API (v2.0): Resource Management > Materials Management. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/materials_mgmt/shipments/line_items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — sort results by field. Prefix with '-' for descending order (e.g. '-created_at'). | |
| view | No | Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields | |
| per_page | No | Query string parameter — the page size between 1 and 100. | |
| company_id | Yes | URL path parameter — the company identifier | |
| project_id | Yes | URL path parameter — the project identifier | |
| filters__id | No | Query string parameter — comma-separated list of shipment line item GUIDs to filter by | |
| filters__labels | No | Query string parameter — comma-separated list of shipment tags to filter by | |
| filters__search | No | Query string parameter — filter results by search | |
| filters__status | No | Query string parameter — filter by shipment status(es) | |
| filters__vendor | No | Query string parameter — the vendor associated with the shipments | |
| filters__columns | No | Query string parameter — the columns to include in the response | |
| filters__updated_at | No | Query string parameter — date range for filtering shipment line items based on their last updated date. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]) | |
| filters__destination | No | Query string parameter — comma-separated list of shipment destinations to filter by | |
| filters__property_key | No | Query string parameter — the property key for filtering | |
| filters__shipment_ids | No | Query string parameter — comma-separated list of shipment GUIDs to filter by | |
| filters__material_type | No | Query string parameter — the material type to filter by | |
| filters__shipment_type | No | Query string parameter — comma-separated values (filters[shipment_type]). Filters shipment.subtype_id, not document shipment_type_id / . | |
| filters__property_value | No | Query string parameter — the property value for filtering | |
| filters__estimated_delivery_at | No | Query string parameter — date range for filtering shipments based on their delivery date. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]) | |
| filters__material_property_key | No | Query string parameter — the material property key for filtering | |
| filters__associated_document_ids | No | Query string parameter — comma-separated list of associated document IDs to filter by | |
| filters__material_property_value | No | Query string parameter — the material property value for filtering |