Get Paginated Receipt Line Items
get_paginated_receipt_line_itemsFetch paginated receipt line items from a Procore project, applying filters like vendor, status, and date ranges. Read-only access enables materials management review without altering source data.
Instructions
Returns a paginated list of receipt line items across all receipts in the project. Supports view types: Normal (default), Short, Mobile, and Id. Use this when you already know which paginated receipt 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 paginated receipt 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/receipts/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 order for results. Prefix with '-' for descending order | |
| 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. For Ids view the maximum page size is 5000. | |
| 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 internal record IDs. | |
| filters__site | No | Query string parameter — site identifier filter. | |
| filters__labels | No | Query string parameter — comma-separated label identifiers. | |
| filters__search | No | Query string parameter — filter results by search | |
| filters__status | No | Query string parameter — filter by receipt status(es) | |
| filters__vendor | No | Query string parameter — comma-separated vendor identifiers. | |
| filters__columns | No | Query string parameter — comma-separated column keys controlling dynamic projection (e.g. "id,status,site"). | |
| filters__condition | No | Query string parameter — receipt condition value; serialized in UPPER_SNAKE_CASE via Core.JsonConverters.UpperSnakeCaseConverter. | |
| filters__created_at | No | Query string parameter — raw date range string for created_at filter. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]). | |
| filters__receipt_id | No | Query string parameter — comma-separated receipt IDs. | |
| filters__updated_at | No | Query string parameter — raw date range string for updated_at filter. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]). | |
| filters__received_at | No | Query string parameter — raw date range string for received_at filter. Format: [YYYY-MM-DD...YYYY-MM-DD] (e.g. [2026-01-01...2026-12-31]). Setting this constructs Adapter.Api.Controller.rest.v2.ReceiptRequest.Read.Receipts... | |
| filters__property_key | No | Query string parameter — dynamic property key for document property filtering. | |
| filters__show_recycled | No | Query string parameter — whether to include recycled receipts. | |
| filters__material_types | No | Query string parameter — filter by line item material types (comma separated) | |
| filters__property_value | No | Query string parameter — dynamic property value for document property filtering. | |
| filters__location_received | No | Query string parameter — location where the receipt was received. | |
| filters__associated_doc_ids | No | Query string parameter — comma-separated associated document IDs. | |
| filters__material_property_key | No | Query string parameter — filter by line item material property key (comma separated) | |
| filters__material_property_value | No | Query string parameter — filter by line item material property value (comma separated) |