Get an attendee field
GET
/events/{event_id}/attendee_fields/{id}Authorization
AuthorizationOAuth2 access token · headerrequiredScopes:
readPath parameters
event_idintegerrequiredEvent id
idintegerrequiredAttendee field id
Responses
200Success
itemAttendeeFieldrequiredShow propertiesHide properties
idobjectrequiredlabelobjectrequiredrequiredobjectrequiredpositionobjectrequirednameobjectrequiredtypeobjectrequiredAllowed:
accessibility_requirementsaddressbiocheckboxcompany_nameconsentcontact_phonecountrydatedate_of_birthdietary_requirementsdropdownemailexternal_idfacebook_accountfirst_namefull_namegendergithub_accountguestheadlinehome_addressinstagram_accountjob_titlelast_namelinkedin_accountlong_textnationalitynumberspacerparagraphpassport_numberradiosection_dividershipping_addressshort_textsocial_accounttelterm_and_consenttexttext_areatimetwitter_accounturlwork_addressyoutube_accountcaptchafile_uploadimageoptionsstring[]requiredmetadataMetadatarequired401Missing, invalid, expired, or revoked OAuth token
errorstring404Not found
errorstring429Rate limit exceeded
errorstringRequest
curl -X GET "http://localhost:3000/api/v2/events/0/attendee_fields/0" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("http://localhost:3000/api/v2/events/0/attendee_fields/0", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"http://localhost:3000/api/v2/events/0/attendee_fields/0",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
{
"item": {
"id": {},
"label": {},
"required": {},
"position": {},
"name": {},
"type": "accessibility_requirements",
"options": [
"string"
]
},
"metadata": {}
}{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}