List Units Of Measure
list_units_of_measureRetrieve a company's units of measure (UOMs), including standard and custom, to discover available units or look up a unit's ID for use in other calls.
Instructions
Returns the Units of Measure (UOMs) configured for the company, grouped by UOM Category. Includes both Procore-provided standard UOMs (those with is_standard: true, e.g., hours, sf) and any custom UOMs defined by the company. Pass view=ids_only to return only the IDs. Filter by filters[id] (single ID or array) and filters[updated_at] (ISO 8601 datetime range) to narrow the result set. Use this to discover units or to look up the id of one before calling a tool that needs it. company_id defaults to the value set by procore_set_config when omitted. Returns a JSON array of units; page and per_page control pagination and the response reports how many pages remain. 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. Procore API: Construction Financials > Units of Measure. Endpoint: GET /rest/v1.0/companies/{company_id}/uoms
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| view | No | Query string parameter — serialization view. When set to `ids_only`, the response body is a JSON array of integer Unit of Measure IDs (pagination headers still apply). Omit for the default view (full UOM objects grouped by... | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| filters__id | No | Query string parameter — restrict results to UOMs with one or more matching IDs. Example: `filters[id]=[101,102]`. | |
| filters__updated_at | No | Query string parameter — return item(s) within a specific updated at iso8601 datetime range |