Custom Event fields are optional data that can be included in the Upcoming Group Events API.
See Custom Event Fields for details on the use of custom event fields.
| GET https://muzodo.com/api/v1/group/:group_api_key/events?includeCustomFields=1 |
| Field | Example | Description |
|---|---|---|
| FieldName | Confirm Date | The name of the custom field. |
| FieldType | DATE | The type of the custom field. The following field types are available:
|
| FieldValue | 2017-03-31 | The value of the custom field. |
| AdminOnly | 1 | 1 if this is a field only for group administrators, 0 otherwise. |
[
{
"GUID":"9C8F6C7E-B1A6-7674-5D0B-0EAEF1A3F32A",
"Name":"April Fools Day Parade",
...
"CustomEventFields":[
{
"FieldName":"Confirm Date",
"FieldType":"DATE",
"FieldValue":"2017-03-31",
"AdminOnly":"0"
},
{
"FieldName":"Ticket Price",
"FieldType":"FLOAT",
"FieldValue":"11.99",
"AdminOnly":"1"
}
]
}
...
]