Update Company Form Template
update_company_form_templateUpdate an existing Procore company form template by sending only changed fields; omitted fields remain unchanged. Provide id and company_id to modify name, description, or fillable PDF.
Instructions
Updates an existing company form template for the specified Procore company. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "form_template" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified company form template on success. 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: id, company_id. Procore API: Project Management > Forms. Endpoint: PATCH /rest/v1.0/companies/{company_id}/form_templates/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — company Form Template ID | |
| name | No | JSON request body field — the Name of the Form Template | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| description | No | JSON request body field — the Description of the Form Template | |
| fillable_pdf | No | JSON request body field — form's Fillable PDF. To upload a fillable PDF you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `fillable_pdf` as files. |