Create Contributing Condition
create_contributing_conditionCreate a contributing condition for Procore incidents. Provide a unique name and company ID; repeated calls with the same name return the existing record to avoid duplicates.
Instructions
Creates a new contributing condition for the specified company. The request is idempotent; repeated calls with the same name return the existing record. Pass the record's fields as top-level arguments — they are nested under "contributing_condition" in the request payload for you. company_id defaults to the value set by procore_set_config when omitted. Acts on the contributing condition 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: company_id, name. Procore API: Project Management > Incidents. Endpoint: POST /rest/v1.0/companies/{company_id}/contributing_conditions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | JSON request body field — display name for the contributing condition. Must be unique within the company. Names of Procore-provided contributing conditions cannot be changed. | |
| active | No | JSON request body field — flag that denotes if the Contributing Condition is available for use | |
| company_id | Yes | URL path parameter — unique identifier for the company. |