List Recycled Injuries
list_recycled_injuriesRetrieve soft-deleted injury records from a project's recycle bin. Use to locate and identify recycled injuries before restoring.
Instructions
Returns a paginated list of soft-deleted injury records in the project's recycle bin, optionally scoped to a single incident via incident_id. Supports the same filtering and sorting options as the main injuries list. Recycled injuries can be restored via the restore endpoint. NOTE: The afflictions and affected_body_part keys are deprecated. Please disregard and use the affected_body_parts and affliction_type keys as documented below. Use this to discover recycled injuries or to look up the id of one before calling a tool that needs it. project_id defaults to the value set by procore_set_config when omitted. Returns a JSON array of recycled injuries; page and per_page control pagination and the response reports how many pages remain. 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: project_id. Procore API: Project Management > Incidents. Endpoint: GET /rest/v1.0/projects/{project_id}/recycle_bin/incidents/injuries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — sort order for results. Prefix with '-' for descending order | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| incident_id | No | Query string parameter — optional incident ID to scope results. When provided, returns only injury records belonging to the specified incident. Omit to retrieve injuries across all incidents in the project. NOTE: The affl... | |
| filters__query | No | Query string parameter — full-text search across injury description and related fields. Returns injuries where any searchable field contains the query string. | |
| filters__created_at | No | Query string parameter — return item(s) created within the specified ISO 8601 datetime range. Formats: `YYYY-MM-DD`...`YYYY-MM-DD` - Date `YYYY-MM-DDTHH:MM:SSZ`...`YYYY-MM-DDTHH:MM:SSZ` - DateTime with UTC Offset `YYYY-MM-... | |
| filters__recordable | No | Query string parameter — return item(s) that are recordable. | |
| filters__filing_type | No | Query string parameter — return item(s) with the specified filing types. The `recordable` filing_type filter value is deprecated. | |
| filters__harm_source_id | No | Query string parameter — array of Harm Source IDs. Returns item(s) with the specified Harm Source IDs. | |
| filters__work_activity_id | No | Query string parameter — array of Work Activity IDs. Returns item(s) with the specified Work Activity IDs. | |
| filters__affected_party_id | No | Query string parameter — array of Affected Party IDs. Returns item(s) with the specified Affected Party IDs. | |
| filters__affected_body_part | No | Query string parameter — return item(s) with any of the specified Affected Body Parts. | |
| filters__affected_person_id | No | Query string parameter — array of Person IDs. Returns item(s) with the specified affected Person IDs. | |
| filters__affliction_type_id | No | Query string parameter — return item(s) with the specified Affliction Type IDs | |
| filters__affected_company_id | No | Query string parameter — array of Company IDs. Returns item(s) with the specified affected Company IDs. | |
| filters__managed_equipment_id | No | Query string parameter — return item(s) with the specified Managed Equipment ID. |