Update A Job Title
update_a_job_titleUpdate a job title for a company by providing its ID, new name, and type (hourly or salaried) to modify Resource Planning records.
Instructions
Updates a Job Title given a company ID and job title ID. Use this to perform the update a action on Resource Planning records. Creates a new Resource Planning records and returns the created object on success (HTTP 201). Required parameters: company_id, job_title_id, name, type. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/job-titles/{job_title_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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... | |
| job_title_id | Yes | URL path parameter — unique identifier for the Job Title. | |
| name | Yes | JSON request body field — name of the Job Title. | |
| globally_accessible | No | JSON request body field — controls whether the Job Title is globally available to all current and future Groups. | |
| color | No | JSON request body field — hexadecimal color code for the Job Title. Helps with categorization and visual distinction. | |
| type | Yes | JSON request body field — specifies the Job Title type. - `hourly` - Hourly wage-based job title. - `salaried` - Fixed salary job title. | |
| hourly_rate | No | JSON request body field — hourly wage rate for the Job Title. Required if type is `hourly`. |