Create Project Distribution Group
create_project_distribution_groupCreate a new distribution group for a specified Procore project. Provide project ID and group name to add it and receive the new group's ID.
Instructions
Create a new Distribution Group associated with the given Project. Pass the record's fields as top-level arguments — they are nested under "distribution_group" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Creates the project distribution group 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: Core > Directory. Endpoint: POST /rest/v1.0/projects/{project_id}/distribution_groups
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | JSON request body field — the Name of the Distribution Group | |
| user_ids | No | JSON request body field — user IDs to associate with the Distribution Group | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| description | No | JSON request body field — the description for this Directory operation | |
| Idempotency-Token | No | JSON request body field — unique idempotent token |