Skip to content
Micepad Docs
Esc
navigateopen⌘Jpreview

Update an attendee

PATCH/events/{event_id}/attendees/{id}
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:write
Path parameters
event_idintegerrequired
Event id
idintegerrequired
Attendee id
Request body
requiredapplication/json
itemobjectrequired
Show properties
first_namestring
last_namestring
emailstring<email>
phonestring | null
job_titlestring | null
companystring | null
rsvp_statusstring
Allowed:unconfirmedconfirmeddeclinedwaitlistedpending_approval
Responses
200Success
itemAttendeerequired
Show properties
idobjectrequired
first_nameobjectrequired
last_nameobjectrequired
emailobjectrequired
job_titleobjectrequired
rsvp_statusobjectrequired
Allowed:unconfirmedconfirmeddeclinedwaitlistedpending_approval
checkin_statusobjectrequired
Allowed:not_checked_inchecked_inchecked_out
qr_codeobjectrequired
created_atobjectrequired
phoneobjectrequired
companyobjectrequired
registration_type_idobjectrequired
event_idobjectrequired
fieldsAttendeeFieldValue[]required
Show properties
Array of AttendeeFieldValue
fieldAttendeeFieldrequired
Show properties
idobjectrequired
labelobjectrequired
requiredobjectrequired
positionobjectrequired
nameobjectrequired
typeobjectrequired
Allowed: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_uploadimage
optionsstring[]required
valuestring | number | boolean | string | number | boolean[] | object | nullrequired
Show properties
One of:
string
string
number
number
boolean
boolean
string | number | boolean[]
Array of string | number | boolean
One of:
string
string
number
number
boolean
boolean
object
object
metadataMetadatarequired
401Missing, invalid, expired, or revoked OAuth token
errorstring
404Not found
errorstring
422Validation failed
errorsstring[]
429Rate limit exceeded
errorstring
Request
curl -X PATCH "http://localhost:3000/api/v2/events/0/attendees/0" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "item": {
    "first_name": "string",
    "last_name": "string",
    "email": "[email protected]",
    "phone": "string",
    "job_title": "string",
    "company": "string",
    "rsvp_status": "unconfirmed"
  }
}'
Response
{
  "item": {
    "id": {},
    "first_name": {},
    "last_name": {},
    "email": {},
    "job_title": {},
    "rsvp_status": "unconfirmed",
    "checkin_status": "not_checked_in",
    "qr_code": {},
    "created_at": {},
    "phone": {},
    "company": {},
    "registration_type_id": {},
    "event_id": {},
    "fields": [
      {
        "field": {
          "id": {},
          "label": {},
          "required": {},
          "position": {},
          "name": {},
          "type": "accessibility_requirements",
          "options": [
            "string"
          ]
        },
        "value": "string"
      }
    ]
  },
  "metadata": {}
}