Create A Single Group
create_a_single_groupCreate a new Resource Planning group in Procore by providing company ID, name, and timezone. Returns the created group object.
Instructions
Create a Single Group. Use this to create a new Resource Planning records in Procore. Creates a new Resource Planning records and returns the created object on success (HTTP 201). Required parameters: company_id, name, timezone. Procore API: Resource Management > Resource Planning. Endpoint: POST /rest/v1.0/workforce-planning/v2/companies/{company_id}/groups
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... | |
| 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. |