Updates A Single Receipt Line Item.
updates_a_single_receipt_line_itemUpdate a specific receipt line item in Procore by sending only the fields you want to change. Adjust quantity, date, status, or location for a receipt not in Final state.
Instructions
This endpoint allows updating properties (such as date, quantity, status, and location) for a specific receipt line item. The receipt must not be in a Final state. If the input is invalid or the line item doesn't exist, a 400 Bad Request response is returned. Send only the fields you intend to change; omitted fields keep their current values. company_id and project_id default to the values set by procore_set_config when omitted, and receipt_id, id must identify existing parent records — resolve them with the matching list tool first. Returns the modified receipt line item on success. 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: receipt_id, id, company_id, project_id. Procore API (v2.0): Resource Management > Materials Management. Endpoint: PATCH /rest/v2.0/companies/{company_id}/projects/{project_id}/materials_mgmt/receipts/{receipt_id}/line_items/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the Materials Management resource | |
| company_id | Yes | URL path parameter — the company identifier | |
| project_id | Yes | URL path parameter — the project identifier | |
| receipt_id | Yes | URL path parameter — unique identifier of the receipt | |
| quantity_expected | No | JSON request body field — the quantity expected for this Materials Management operation | |
| quantity_received | No | JSON request body field — the quantity received for this Materials Management operation |