cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
437
Views
0
Helpful
1
Replies

cannot add attendee using CreateMeetingAttendee xml api

contact4
Level 1
Level 1

Hello, I am modifying and existing coding that only created events. Modified the createevent to require registrationID.

After creating an event I see it requires registration id on event manager online.

Registration Information

Registration ID required: Yes

Password required: No

Password:

Approval required: Yes

Custom registration form: No

Trying to add event attendee but cannot pass the permission issue. Am I missing a setting some where.

host account is used.

  <body xmlns="">

    <bodyContent xsi:type="java:com.webex.service.binding.attendee.CreateMeetingAttendee">

      <sessionKey>my meetingkey is here</sessionKey>

      <role>ATTENDEE</role>

      <person>

        <name>Name Example</name>

        <email>emailExample@gmail.com</email>

        <type>MEMBER</type>

      </person>

    </bodyContent>

  </body>

giving the following response.

<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common" xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">

  <serv:header>

    <serv:response>

      <serv:result>FAILURE</serv:result>

      <serv:reason>The role is not supported for adding specified attendee to session</serv:reason>

      <serv:gsbStatus>PRIMARY</serv:gsbStatus>

      <serv:exceptionID>040007</serv:exceptionID>

    </serv:response>

  </serv:header>

  <serv:body>

    <serv:bodyContent />

  </serv:body>

</serv:message>

Thank you for the help.

Similar post but setting role to attendee isn't my problem. The role is not supported for adding specified attendee to session

1 Accepted Solution

Accepted Solutions

contact4
Level 1
Level 1

changing type from MEMBER to VISITOR actually solved my problem. Should have tested it out sooner.

View solution in original post

1 Reply 1

contact4
Level 1
Level 1

changing type from MEMBER to VISITOR actually solved my problem. Should have tested it out sooner.