Create Property Damage
create_property_damageCreate a property damage record for a specified incident, optionally including estimated cost impact, responsible and affected companies, managed equipment, and custom fields.
Instructions
Creates a new property damage record associated with the specified incident. Requires incident_id. Optionally specify description, estimated cost impact, responsible company, affected company, managed equipment, work activity, and custom fields. The operation is idempotent. Pass the record's fields as top-level arguments — they are nested under "property_damage" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Acts on the property damage and returns Procore's response for the operation. 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: project_id, incident_id. Procore API: Project Management > Incidents. Endpoint: POST /rest/v1.0/projects/{project_id}/incidents/property_damages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| description | No | JSON request body field — description of event in Rich Text format | |
| incident_id | Yes | JSON request body field — the ID of the Incident | |
| work_activity_id | No | JSON request body field — the ID of the Work Activity | |
| affected_company_id | No | JSON request body field — the ID of the Affected Company | |
| managed_equipment_id | No | JSON request body field — the ID of the Managed Equipment | |
| estimated_cost_impact | No | JSON request body field — estimated cost impact of the record | |
| responsible_company_id | No | JSON request body field — the ID of the Responsible Company | |
| 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 ... |