Create a post
create_postMUTATES Raisely data: publishes a post (a campaign/profile update). Raisely API: POST /posts with the body wrapped as { data: {...} }. Required by the API: path (the post's URL slug), body (the content), photoUrl. Link it to a profile via profileUuid (pass through fields). Extra fields (title, date, ...) via fields. Returns the created post.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | The post content/body. Required by the API. | |
| path | Yes | The post's URL slug/path. Required by the API. | |
| title | No | The post title. | |
| fields | No | Additional documented Raisely fields to send in the JSON write body's `data` object — merged OVER the typed fields above. | |
| photoUrl | No | URL of the post's photo. Required by the API. |