Get Markups By Groups
get_markups_by_groupsFetch Procore markups for given group IDs, using company/project context and item details to return matching document markup data.
Instructions
Retrieves markups associated with specific group IDs. company_id and project_id default to the values set by procore_set_config when omitted. Acts on the markup and returns Procore's response for the operation. 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, project_id, group_ids, item_id, item_type. Procore API (v2.0): Project Management > Document Markup. Endpoint: POST /rest/v2.0/companies/{company_id}/projects/{project_id}/viewer_documents/markups/by_groups
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for pagination (1-based) | |
| item_id | Yes | JSON request body field — unique identifier of the item | |
| per_page | No | Query string parameter — number of items per page (max 100) | |
| group_ids | Yes | JSON request body field — array of group identifiers | |
| item_type | Yes | JSON request body field — the item type for this Document Markup operation | |
| company_id | Yes | URL path parameter — unique identifier of the company | |
| project_id | Yes | URL path parameter — unique identifier of the project |