Show Project Folder (Company-Scoped)
show_project_folder_company_scopedRetrieve immediate child folders and files for a specific project folder in Procore, scoped to a company. Use when you know the folder ID and need its full field set.
Instructions
Return immediate accessible children for a specific project folder as a single mixed collection of folders and files, scoped under a company. Descendants beyond one level are not included. Use this when you already know which project folder you want and need its full field set. company_id and project_id default to the values set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns a single JSON object describing the project folder. Read-only — it changes nothing in Procore. 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, id. Procore API (v2.0): Core > Documents. Endpoint: GET /rest/v2.0/companies/{company_id}/projects/{project_id}/folders/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier for the resource. | |
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| view | No | Query string parameter — response projection. Supports legacy `web_normal` requests for compatibility with v1 folder-show flows. | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| exclude_files | No | Query string parameter — exclude child files from the response. | |
| exclude_folders | No | Query string parameter — exclude child folders from the response. | |
| show_latest_file_version_only | No | Query string parameter — return only the latest file version per file. |