Create Checklist Item Attachment
create_checklist_item_attachmentUpload an attachment to a checklist item in Procore inspections. Provide list, item, project, and section IDs along with the file.
Instructions
Uploads an Attachment to the specified Checklist Item. Use this to create a new Inspections in Procore. Creates a new Inspections and returns the created object on success (HTTP 201). Required parameters: list_id, item_id, project_id, section_id, attachment. Procore API: Project Management > Inspections. Endpoint: POST /rest/v1.0/checklist/lists/{list_id}/items/{item_id}/item_attachments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | URL path parameter — unique identifier of the list | |
| item_id | Yes | URL path parameter — unique identifier of the item | |
| project_id | Yes | JSON request body field — the ID of the Project the Item belongs to | |
| section_id | Yes | JSON request body field — the ID of the Section the Item belongs to | |
| attachment | Yes | JSON request body field — item Attachment. To upload an attachment you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with the `attachment` file. |