List Recycled Observation Items
list_recycled_observation_itemsGet a paginated list of recycled observation items for a project. Use filters to narrow by type, trade, assignee, status, priority, location, creator, or update date.
Instructions
Returns a collection of Recycled Observation Items. See Filtering on List Actions for information on using the filtering capabilities provided by this endpoint. Use this to enumerate Observations when you need a paginated overview, to find IDs, or to filter by query parameters. Returns a paginated JSON array of Observations. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: project_id. Procore API: Project Management > Observations. Endpoint: GET /rest/v1.0/projects/{project_id}/recycle_bin/observations/items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| filters__type_id | No | Query string parameter — return item(s) with the specified Observation Type ID. | |
| filters__trade_ids | No | Query string parameter — array of Trade IDs. Returns item(s) with the specified Trade IDs. | |
| filters__assignee_id | No | Query string parameter — return item(s) assigned to the specified User ID. | |
| filters__status | No | Query string parameter — return item(s) with the specified status values. The mapping is as follows: ``` 0: Initiated 1: Ready For reviewed 2: Not Accepted 3: Closed ``` | |
| filters__priority | No | Query string parameter — return item(s) with the specified priorities. | |
| filters__location_id | No | Query string parameter — return item(s) with the specified Location IDs. | |
| filters__created_by_id | No | Query string parameter — returns item(s) created by the specified User IDs. | |
| filters__assignee_company_id | No | Query string parameter — array of Vendor IDs. Returns item(s) where the assignee is associated to the specified Vendor ID. | |
| filters__updated_at | No | Query string parameter — return item(s) last updated 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 `YYY... | |
| page | No | Page number for paginated results (default: 1) | |
| per_page | No | Number of items per page (default: 100, max: 100) |