Update Project Distribution Group
update_project_distribution_groupUpdate project distribution group details by sending only changed fields to Procore. Modify name, description, or user IDs while preserving omitted values.
Instructions
Update a Distribution Group associated with the given Project. Send only the fields you intend to change; omitted fields keep their current values. 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, and distribution_group_id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified project distribution group on success. 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, distribution_group_id. Procore API: Core > Directory. Endpoint: PATCH /rest/v1.0/projects/{project_id}/distribution_groups/{distribution_group_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | 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 | |
| distribution_group_id | Yes | URL path parameter — unique identifier for the distribution group. |