Add Wage Override
add_wage_overrideAdd a wage override for a job title in a project. Specify the hourly rate and job title to create a new override and receive its UUID.
Instructions
Add a Wage Override for a specific Job Title in a Project. A successful response returns the new Wage Override UUID. company_id and project_id default to the values set by procore_set_config when omitted. Creates the wage override 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, project_id, job_title_id, rate. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/projects/{project_id}/wage-overrides
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rate | Yes | JSON request body field — hourly wage rate override for the specified Job Title. | |
| company_id | Yes | URL path parameter — unique identifier for the company. This parameter accepts both formats: - **Recommended**: Procore company ID (integer) - Use this for new integrations - Legacy: LaborChart UUID format (uuid string... | |
| project_id | Yes | URL path parameter — unique identifier for the project | |
| job_title_id | Yes | JSON request body field — uUID of the Job Title for which the Wage Override applies. |