Update a fundraising profile
update_profileMUTATES Raisely data: updates a fundraising profile's goal/name/story. Raisely API: PATCH /profiles/{path} with the body wrapped as { data: {...} } (only included fields change). Use fields for goal, name, description/story, public, private, and any other documented field. Set overwriteCustomFields:true to overwrite (rather than preserve) unspecified custom fields. The path is never sent in the body.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal | No | New fundraising goal (in the smallest currency unit). | |
| name | No | New profile name. | |
| path | Yes | The profile path (URL slug) or uuid to update (path only; required). | |
| fields | No | Additional documented Raisely fields to send in the JSON write body's `data` object — merged OVER the typed fields above. | |
| overwriteCustomFields | No | When true, overwrite (instead of preserve) custom fields not included in this update. |