CMS Tool API schema
Public API version 1.4.10.
/api/eventAttendee
Read and update event attendees.
GET
List records, or retrieve one by appending its ID to the path.
Query parameters
| Name | Type | Example | Notes |
|---|---|---|---|
id | int | 123 | Filter results by id. |
eventid | int | 123 | Filter results by eventid. |
attendeename | text | example | Filter results by attendeename. |
attendeestatus | text | example | Filter results by attendeestatus. |
includeEventInfo | boolean | true | Include event info in the response. Accepts true or 1. |
offset | int | 123 | Skip this many matching records before returning results. |
pageSize | int | 123 | Limit the number of records returned. |
POST
Create or update a record from a JSON object.
Request content type: application/json
Request body fields
| Name | Type | Example | Notes |
|---|---|---|---|
id | int | 123 | Set the id value. |
eventid | int | 123 | Set the eventid value. |
attendeename | text | example | Set the attendeename value. |
attendeestatus | text | example | Set the attendeestatus value. |
attendeembrid | int | 123 | Set the attendeembrid value. |
mbr_email | text | customer@example.com | Set the mbr email value. |
/api/eventAttendee/statusMetaData
Read available attendee statuses.
GET
Read available attendee statuses.
Machine-readable documentation
This documentation is also available as JSON or Markdown at the same URL. Request JSON with Accept: application/json or Markdown with Accept: text/markdown.