Custom Event Fields

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.

End Point

The end point must include the optional parameter includeCustomFields=1.
GET https://muzodo.com/api/v1/group/:group_api_key/events?includeCustomFields=1

Custom Event Fields

FieldExampleDescription
FieldNameConfirm DateThe name of the custom field.
FieldTypeDATEThe type of the custom field. The following field types are available:
  • TEXT-LINE - Text (single line), e.g. "Blue uniforms"
  • TEXT-PARA - Text (multiple lines) using the \n character to delimit lines, e.g. "On\nmultiple\nlines."
  • INTEGER - Whole number, e.g. "23"
  • FLOAT - Number with decimals, e.g. "23.56"
  • DATE - Date of the format YYYY-MM-DD, e.g. "2017-05-01"
  • TIME - Time of the format HH-MM-SS, e.g. "12-05-00"
  • CHECKBOX - 0 for unchecked, 1 for checked, e.g. "1"
  • DROPDOWNLIST-SINGLE - Text (from a set of choices), e.g. "Blue uniforms"
  • DROPDOWNLIST-MULTIPLE - A list of text values, delimited by the \n character, e.g. "Red\nGreen\nYellow"
FieldValue2017-03-31The value of the custom field.
AdminOnly11 if this is a field only for group administrators, 0 otherwise.

Example

[
	{
		"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"
			}
		]
		
	}
...
]