Creates an event. Events let users know what is going on at the school. You can show individual event categories on a page or use the calendar to aggregate multiple event categories in one location. Learn more about Events.
https://{school}.myschoolapp.com/api/event/create?t={token}
Header | Required | Type | Description |
---|---|---|---|
Content-Type | string | Media type of the body sent to the API. |
Property | Required | Type | Description |
---|---|---|---|
Title | string | The title of the event to be created. | |
StartDate | date | The date the event to be created occurs. Use the following format - MM/DD/YYYY. | |
GroupList | object | The category/calendar the event should be posted to. The groupId |
{
"StartDate": "09/09/2017",
"Title": "Fall Gala",
"BriefDescription": "Come celebrate our school!",
"GroupList": [
{
"group_id": 7829,
"selected": true
}
],
"RegistrationId": "5850",
"EmailDisplayName": "John Doe",
"SignupEmail": "jdoe@gmail.com",
"FeatureDate": "06/08/2017"
}
A ResponseMessage containing the created event ID.
{
"Message": "2035101"
}