Get Paginated Receipt Details
get_paginated_receipt_detailsRetrieve a paginated list of receipts with filtering, sorting, and multiple view options. Use this read-only endpoint to fetch full receipt field sets for a company and project.
Instructions
Returns a paginated list of receipts with filtering and sorting options. Supports multiple view types: Normal (default), Short, Compact, Mobile, and Id. Use this when you already know which paginated receipt detail 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 detail. 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
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. 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__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. |