update_company_file
Modify company files in Procore by updating metadata, moving locations, or changing permissions using the Procore MCP Server.
Instructions
Update company File. [Core/Documents] PATCH /rest/v1.0/companies/{company_id}/files/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | Unique identifier for the company. | |
| id | Yes | ID of the File | |
| parent_id | No | The ID of the parent folder to move the file to | |
| name | No | The Name of the file | |
| checked_out_until | No | Check out a file until the specified time. Admins may reset checkout by sending "null" | |
| is_tracked | No | Status if a file should be tracked (true/false) | |
| explicit_permissions | No | Set file to private (true/false) | |
| description | No | A description of the file | |
| data | No | [DEPRECATED] File to use as file data. Please use upload_uuid instead. Note that it's only possible to post a file using a multipart/form-data body (see RFC 2388). Most HTTP libraries will do the r... | |
| upload_uuid | No | UUID referencing a previously completed Upload. This is the recommended approach for file uploads. See Company Uploads or Project Uploads endpoints for instructions on how to use uploads. You sho... | |
| custom_field_%{custom_field_definition_id} | No | 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 ... |