Create Procore Item Association
create_procore_item_associationAssociates a coordination issue with another Procore item in a project. Requires coordination issue ID and project ID; returns the new association with its ID.
Instructions
CoordinationIssue can be associated with other procore items. This API endpoint creates that association. The extended view provides what is shown below. The normal view is the same as the extended view but excludes subject and title in item_data. The compact view returns coordination_issue_id, item_id, and item_type only. The default view is normal. coordination_issue_id must identify an existing parent record — resolve it with the matching list tool first. Creates the procore item association and returns it with its new id (HTTP 201); calling it again creates another record. 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: coordination_issue_id, project_id. Procore API: Project Management > Coordination Issues. Endpoint: POST /rest/v1.0/coordination_issues/{coordination_issue_id}/procore_item_associations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | JSON request body field — unique identifier for the project. | |
| procore_item | No | JSON request body field — details of Procore item to be linked to a CoordinationIssue | |
| coordination_issue_id | Yes | URL path parameter — coordination Issue ID |