List All Attachments
list_all_attachments_companyRetrieve a paginated list of all asset and asset-type attachments for a company, complete with download URLs. Filter by asset ID and sort results to locate specific files.
Instructions
Returns a paginated list of all asset-level attachments plus asset-type-level attachments for the company with download URLs. Use this when you already know which attachment you want and need its full field set. company_id defaults to the value set by procore_set_config when omitted. Returns a single JSON object describing the attachment. Read-only — it changes nothing in Procore. 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. Procore API (v2.0): Core > Assets. Endpoint: GET /rest/v2.0/companies/{company_id}/assets/attachments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — one-based page index (1..N) | |
| sort | No | Query string parameter — sorting criteria in minus-based order format. Default sort order is ascending. Multiple sort criteria can be provided in CSV format, for example: sort=file_name,-modified_at. | |
| per_page | No | Query string parameter — the size of the page to be returned. Maximum page size is 50. | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| Accept-Language | No | JSON request body field — locale for localized response messages (for example: en, fr-FR, pseudo) | |
| filters__asset_id | No | Query string parameter — filter by asset IDs. Accepts a single ID or multiple comma-separated IDs (e.g., 'id1,id2,id3'). |