Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions source/includes/authenticated_api/_events.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ The authenticated REST API endpoints for events only deal with events created in
"twitter_share_title": "Deliver the Petition to the Wizard",
"web_share_api_share_message": "Check out this event in the Emerald City",
"whatsapp_share_message": "I'm attending this event to deliver the petition. Join me!",
"share_by_email_body": "I'm attending this event and thought you might be interested. Will you join me?"
"share_by_email_body": "I'm attending this event and thought you might be interested. Will you join me?",
"disable_rsvp_form": false
},
...
],
Expand Down Expand Up @@ -162,7 +163,8 @@ The response includes all the same data as the single-event endpoint for each ev
"twitter_share_title": "Deliver the Petition to the Wizard",
"web_share_api_share_message": "Check out this event in the Emerald City",
"whatsapp_share_message": "I'm attending this event to deliver the petition. Join me!",
"share_by_email_body": "I'm attending this event and thought you might be interested. Will you join me?"
"share_by_email_body": "I'm attending this event and thought you might be interested. Will you join me?",
"disable_rsvp_form": false
}
}
```
Expand Down Expand Up @@ -293,7 +295,8 @@ the event `slug` is `chapter-meeting-1`.
"twitter_share_title": null,
"web_share_api_share_message": null,
"whatsapp_share_message": null,
"share_by_email_body": null
"share_by_email_body": null,
"disable_rsvp_form": false
}
}
```
Expand Down Expand Up @@ -336,6 +339,7 @@ Field | Type | Description
bluesky_share_message | String | Custom message used when sharing the event on Bluesky
campaigner_contactable | Boolean | Whether members of the public can contact the event host via the public event page
description | String | Description of the event
disable_rsvp_form | Boolean | Prevents new RSVPs via the event page, by replacing the RSVP form with a message that RSVPs are closed
event_host_name_override | String | Name to display for the event host on the event page. Set to `null` to use the name from the event host's user account.
extra_location_info | String | Additional non-address information about the event's location, e.g. "7th floor" or "Park in the back parking lot"
facebook_share_description | String | Custom description used when sharing the event on Facebook
Expand Down
Loading