Create Project Region
create_project_regionCreate a project region in Procore for a specified company. Provide company_id and region name to generate a new region and receive its unique ID in response.
Instructions
Create a new Project Region in the specified Company. Pass the record's fields as top-level arguments — they are nested under "project_region" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Creates the project region 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: Company Admin > Company Settings. Endpoint: POST /rest/v1.0/companies/{company_id}/project_regions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | JSON request body field — the Name of the Project Region | |
| company_id | Yes | URL path parameter — unique identifier for the company. |