Get Issuing Line Items
get_issuing_line_itemsRetrieve detailed issuing line item data from Procore materials management, including full fields for known IDs. Supports pagination, sorting, and filtering to locate specific records.
Instructions
The returned data and pagination size depend on the Adapter.Api.Controller.rest.v2.Issuing.Read.ViewTypes.IssuingSummaryViewType specified in issuingRequest. If the view is set to Adapter.Api.Controller.rest.v2.Issuing.Read.ViewTypes.IssuingSummaryViewType.Id, up to 5000 records are returned; otherwise, the maximum page size is 100. Use this when you already know which issuing 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 issuing 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/issuing/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__labels | No | Query string parameter — comma-separated label names; lines are returned when the line's material has at least one matching label. | |
| filters__search | No | Query string parameter — filter results by search | |
| filters__columns | No | Query string parameter — optional response fields to include |