Update A Single Group
update_a_single_groupUpdate a group's information such as name, timezone, address, and contact details using its unique ID. This modifies the group record in the Resource Planning module.
Instructions
Update the single Group in a given ID and body. 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, group_id, name, timezone. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/groups/{group_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... | |
| group_id | Yes | URL path parameter — unique identifier for the group | |
| name | Yes | JSON request body field — group Name. | |
| timezone | Yes | JSON request body field — the default Timezone for scheduling outbound messages from projects in this group that don't specify their own Timezone. Example format: America/Chicago. | |
| color | No | JSON request body field — hexadecimal color code for the Group. Can be helpful for categorization. Example: #53A9FF. | |
| address_1 | No | JSON request body field — the first part of the Group's address. | |
| address_2 | No | JSON request body field — the second part of the Group's address (e.g., Apartment, Suite, Unit). | |
| city_town | No | JSON request body field — the City or Town for the Group. | |
| state_province | No | JSON request body field — the State or Province for the Group. | |
| zipcode | No | JSON request body field — zip or Postal Code for the Group. | |
| country | No | JSON request body field — the Country for the Group. | |
| contact_name | No | JSON request body field — the Point of Contact (P.O.C.) name for the Group. | |
| contact_phone | No | JSON request body field — phone number for the Group's Point of Contact. Must include country and area code. | |
| contact_email | No | JSON request body field — email address for the Group's Point of Contact. |