Create Drawing Set
create_drawing_setCreate a drawing set in a Procore project using project_id and name. The API returns the newly created set, including its unique ID.
Instructions
Create a new Drawing Set in the specified Project. project_id defaults to the value set by procore_set_config when omitted. Creates the drawing set and returns it with its new id (HTTP 201); calling it again creates another record. 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: project_id, name. Procore API: Project Management > Drawings. Endpoint: POST /rest/v1.0/projects/{project_id}/drawing_sets
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | JSON request body field — drawing Set date | |
| name | Yes | JSON request body field — drawing Set name | |
| project_id | Yes | URL path parameter — unique identifier for the project. |