GET /rest/v2.0/companies/{company_id}/projects/{project_id}/coordination_issues

Returns a paginated list of coordination issues visible to the user within the project.

Supports view=ids_only for { "data": [<id>, ...] } (JSON numbers from pluck(:id)).

Query included controls which attributes are present on each item (see schema description). Include permissions in the query to get can_edit field for each issue.

When save_sticky_filters is truthy, list filters may be persisted for the tool (sticky filters).

filters[is_private] narrows to public (false) or private (true) issues when the enable-ci-private feature is active (same semantics as CoordinationIssues::Filter).

Servers

Path parameters

Name Type Required Description
project_id String Yes

Unique identifier for the project.

company_id String Yes

Unique identifier for the company.

Request headers

Name Type Required Description
Procore-Company-Id Integer Yes

Unique company identifier associated with the Procore User Account.

Query parameters

Name Type Required Description
filters[is_private][] Array No

Filter by private flag. When the enable-ci-private feature is inactive for the project, all issues behave as public for visibility and this filter has limited effect. Values are booleans (true = private, false = public).

filters[created_at] String No

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-DDTHH:MM:SS+XX:00...YYYY-MM-DDTHH:MM:SS+XX:00` - Datetime with Custom Offset

filters[watcher_id][] Array No

Filter by watcher user id(s).

included String No

Comma-separated blueprint field names (e.g. assignee,title,uuid,location,is_private). When omitted or empty, all conditional fields are included.

filters[priority][] Array No

Filter item(s) by priority level.

save_sticky_filters Boolean No

When true, persist current filters for the coordination issues tool where supported.

filters[search] String No

Returns item(s) matching the specified search query string.

filters[document_revision_id][] Array No

Filter Coordination Issues by document revision ID(s).

filters[updated_at] String No

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 YYYY-MM-DDTHH:MM:SS+XX:00...YYYY-MM-DDTHH:MM:SS+XX:00 - Datetime with Custom Offset

filters[include_sublocations] Boolean No

Use together with filters[location_id]

Default value: false

filters[trade_id] String No

Trade ID

filters[issue_type][] Array No

Filter item(s) by issue type.

filters[due_date] String No

Filter Coordination Issues by due date.

sort String No

Sort results by field. Direction (asc/desc) controlled by presence or absence of '-' prefix.

Valid values:

  • "due_date"
  • "-title"
  • "title"
  • "updated_at"
  • "-updated_at"
  • "-due_date"
  • "-status"
  • "is_private"
  • "status"
  • "created_by"
  • "-created_by"
  • "-is_private"
  • "-assignee"
  • "created_at"
  • "-created_at"
  • "assignee"
filters[assignee_id][] Array No

Filter item(s) with matching assignee user IDs.

filters[created_by_company_id][] Array No

Filter item(s) with matching created by vendor companies.

filters[document_container_id][] Array No

Filter Coordination Issues by document container ID(s).

view String No

When ids_only, response is id list only (no full blueprint objects).

Valid values:

  • "ids_only"
filters[created_from][] Array No

Filter item(s) by creation source.

filters[status] String No

Return item(s) with the specified statuses

filters[location_id] String No

Filters by specific location (Note: Use either this or location_id_with_sublocations, but not both)

filters[overdue] Boolean No

Filter for overdue Coordination Issues.

page Integer No

Page

filters[coordination_issue_file_id][] Array No

Filter by BIM / coordination issue file id(s).

per_page Integer No

Elements per page

Default value: 10

filters[created_by_id][] Array No

Return item(s) created by the specified User IDs

filters[assignee_company_id][] Array No

Filter item(s) with matching assignee vendor companies.

filters[ids][] Array No

Return only coordination issues with these ids (see CoordinationIssues::Filter / with_ids).

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.