Skip to main content

Add an attendee

You can add type of user e.g. Ateendee, Admin etc. by changing isadmin binary property.

Request body structure should be same as mentioned or else will cause error.

Request Body

Brief description of the expected payload:

  • eventid is mandatory.
  • email, firstname, lastname, form_number should not be null.
  • isadmin, isactive, isnetworking, userwaitlistmode are integer binary, so expected values are 0 or 1.
  • userpassword length should be minimum 6 and should not include special characters.
  • form_number is a unique number assigned to the forms. Possible values can be fetched from /myForms response in Checkout Forms section.
  • details_form item order should match the same details_form fetched from /myForms. Follow given example to avoid fetal errors. If form item property is_section is true or input_type is dynamicfield, then value property is not required in payload. For other items, value should never be null, instead use either blank string or blank array accordingly.
  • profileurl, coverimage, audiourl is not mandatory. Expected accessible URL or null.
  • exhibitoridfk, sponsoridfk, sppeakeridfk are the respective ids to which this attendee will be associated to. Expected valid ids or null.
  • usercategory is expected as a comma separated user category id string value. It should not be null or empty string. The category ids can be found in the fetched response of /events/user_categories in Event section. One mandatory id should be one that is assigned for a attendee type user.
  • userinterests is also expected as a comma separated user interest id string value. It can be null or empty string. The interest ids can be found in the fetched response of /events/interest in Event section.
  • sendwelcomeemail is a boolean property. If true then we'll send an Welcome Email to them.
email string REQUIRED

Stringified JSON

eventid integer REQUIRED

Simple ids

firstname string REQUIRED

Simple string

lastname string REQUIRED

Simple string

userpassword string REQUIRED

Simple string

form_number integer REQUIRED
isactive integer REQUIRED
isadmin integer REQUIRED
isnetworking integer REQUIRED
profileurl string REQUIRED

Simple string

coverimage string

Simple string

audiourl string

Simple string

details_form object[] REQUIRED
id string

Simple string

value string

Simple string

exhibitoridfk integer REQUIRED
speakeridfk integer REQUIRED
sponsoridfk integer REQUIRED
usercategory string REQUIRED
userinterests string REQUIRED
userwaitlistmode integer REQUIRED
sendwelcomeemail boolean
Responses
200

CreateAppUserResponseSuccess

Schema
is_error integer
message string
userresponse object
content object
resource object[]
status_code integer
welcome_email_response string
default

Error Response

Schema
code int32

Error code.

message string

String description of the error.