Batch-Get Model Manager Viewpoints By UUID (REST V2.0, Issue-Scoped)
batch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issueBatch retrieve Model Manager viewpoints for a coordination issue by providing a list of viewpoint UUIDs. Only returns viewpoints already mapped to the issue.
Instructions
Request body must include ids (non-empty array of UUID strings). The server filters ids to those present on this issue as MM-backed mappings, preserves request order for the intersection, then calls Model Manager POST .../bim/viewpoints/batch. If no ids remain after filtering, returns { "data": [] } without calling Model Manager. Response body is forwarded from Model Manager (typically { "data": [ ... ] }). Use this to perform the batch get action on Coordination Issues. Creates a new Coordination Issues and returns the created object on success (HTTP 201). Required parameters: company_id, project_id, coordination_issue_id, ids. Procore API (v2.0): Project Management > Coordination Issues. Endpoint: POST /rest/v2.0/companies/{company_id}/projects/{project_id}/coordination_issues/{coordination_issue_id}/viewpoints/batch
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| coordination_issue_id | Yes | URL path parameter — coordination Issue ID | |
| ids | Yes | JSON request body field — requested MM viewpoint UUIDs (server filters to those mapped on the issue) |