Get Layers
get_layersRetrieve all accessible markup layers (public and private) for a company and project. Supports pagination and filtering by fields like id, created date, or updated date.
Instructions
Returns all accessible markup layers (public + user's private) for a specific company and project with pagination and filtering support. Use this to fetch the full details of a specific Document Markup records by its identifier. Returns a paginated JSON array of Document Markup records. Use page and per_page to control pagination; the response includes pagination metadata. Required parameters: company_id, project_id. Procore API: Project Management > Document Markup. Endpoint: GET /rest/v1.0/companies/{company_id}/projects/{project_id}/domains/layers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the Procore company | |
| project_id | Yes | URL path parameter — unique identifier for the Procore project | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| view | No | Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields | |
| filters__created_before | No | Query string parameter — filters[created_before] | |
| filters__updated_at | No | Query string parameter — filter results by updated at | |
| filters__id | No | Query string parameter — filter results by id | |
| filters__context_id | No | Query string parameter — filter results by context id | |
| filters__context_type_id | No | Query string parameter — filters[context_type_id] | |
| filters__subcontext_type_id | No | Query string parameter — filters[subcontext_type_id] |