Create Rounding Configuration
create_rounding_configurationCreates a new rounding configuration for a Procore company, defining the rounding rule and time increment for timecard entries. Requires a company ID; returns the created configuration with its new ID.
Instructions
Creates a new rounding configuration for the specified Procore company. Pass the record's fields as top-level arguments — they are nested under "rounding_configuration" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Creates the rounding configuration and returns it with its new id (HTTP 201); calling it again creates another record. 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: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/companies/{company_id}/rounding_configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rule | No | JSON request body field — rule to apply to rounding. Options are 'up', 'down', 'nearest', and 'favor_employee' | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| time_increment | No | JSON request body field — time increment available for Timecard Entries. Options are 5, 6, 10, and 15 |