Get All Attachments For Equipment (Project)
get_all_attachments_for_equipment_projectRetrieve all attachments associated with equipment in a Procore project. Provide equipment ID, project ID, and company ID to get paginated results.
Instructions
Get all attachments for equipment (Project). Use this to fetch the full details of a specific Equipment records by its identifier. Returns a paginated JSON array of Equipment records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: equipment_id, project_id, company_id. Procore API (v2.0): Core > Equipment. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/equipment_register/{equipment_id}/attachments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| equipment_id | Yes | URL path parameter — unique identifier of the equipment | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| resource_id | No | Query string parameter — iD of the specific resource to filter attachments by (e.g., maintenance record ID). Only attachments associated with this resource will be returned. | |
| resource_type | No | Query string parameter — type of resource to filter attachments by. Currently supported: 'MAINTENANCE' for maintenance-related attachments. | |
| page | No | Page number for paginated results (default: 1) | |
| per_page | No | Number of items per page (default: 100, max: 100) |