Delete an attendee field
DELETE
/events/{event_id}/attendee_fields/{id}Authorization
AuthorizationOAuth2 access token · headerrequiredScopes:
writePath parameters
event_idintegerrequiredEvent id
idintegerrequiredAttendee field id
Responses
204Deleted
401Missing, invalid, expired, or revoked OAuth token
errorstring404Not found
errorstring429Rate limit exceeded
errorstringRequest
curl -X DELETE "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: "DELETE",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.delete(
"http://localhost:3000/api/v2/events/0/attendee_fields/0",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
Deleted
{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}