Create Company Folder
create_company_folderCreate a new folder in Procore Documents for a company. Provide company ID and folder name. Optionally set parent folder, tracking status, and permissions.
Instructions
Create a new Folder associated with a specific Company. Use this to create a new Documents in Procore. Creates a new Documents and returns the created object on success (HTTP 201). Required parameters: company_id, name. Procore API: Core > Documents. Endpoint: POST /rest/v1.0/companies/{company_id}/folders
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| parent_id | No | JSON request body field — the ID of the parent folder to create the folder in. If not set the folder will be created under the root folder. | |
| name | Yes | JSON request body field — the Name of the folder | |
| is_tracked | No | JSON request body field — status if a folder should be tracked (true/false) | |
| explicit_permissions | No | JSON request body field — set folder to private (true/false) | |
| custom_field_%{custom_field_definition_id} | No | JSON request body field — value of the custom field. The data type of the value passed in corresponds with the data_type of the Custom Field Definition. For a lov_entry data_type the value passed in should be the ID of one ... |