aps_submittals_request
Access Autodesk Construction Cloud submittals API endpoints directly for advanced operations like pagination, POST/PATCH requests, or accessing metadata and settings not available through simplified tools.
Instructions
Call any ACC Submittals API endpoint. This is the raw / power‑user tool – it returns the full JSON response. Prefer the simplified tools (aps_list_submittal_items, aps_list_submittal_packages, etc.) for everyday use. Use this tool when you need full control: pagination, POST/PATCH, or endpoints not covered by simplified tools (e.g. metadata, settings/mappings, users/me, item-types, responses).
The base path is: construction/submittals/v2/projects/{projectId}/ You only need to provide the sub‑path after 'projects/{projectId}/' (e.g. 'items', 'packages', 'specs').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID – UUID format (e.g. 'abc12345-6789-…'). If you have a DM project ID with 'b.' prefix, it will be stripped automatically. | |
| method | No | HTTP method. Default: GET. | |
| path | Yes | Sub‑path relative to 'projects/{projectId}/' (e.g. 'items', 'packages', 'specs', 'items/{itemId}', 'metadata', 'responses', 'item-types'). | |
| query | No | Optional query parameters as key/value pairs (e.g. { "limit": "50", "offset": "0", "filter[statusId]": "2" }). | |
| body | No | Optional JSON body for POST requests. |