Meetings.SetAttendeeResponse Method
Sets the attendee response for a meeting.
Namespace: [Meetings Web service]
Web service reference: http://Site/_vti_bin/Meetings.asmx
Syntax
'Declaration
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/SetAttendeeResponse", RequestNamespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/", _
ResponseNamespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/", _
Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Sub SetAttendeeResponse ( _
attendeeEmail As String, _
recurrenceId As UInteger, _
uid As String, _
sequence As UInteger, _
utcDateTimeOrganizerCriticalChange As DateTime, _
utcDateTimeAttendeeCriticalChange As DateTime, _
response As AttendeeResponse _
)
'Usage
Dim instance As Meetings
Dim attendeeEmail As String
Dim recurrenceId As UInteger
Dim uid As String
Dim sequence As UInteger
Dim utcDateTimeOrganizerCriticalChange As DateTime
Dim utcDateTimeAttendeeCriticalChange As DateTime
Dim response As AttendeeResponse
instance.SetAttendeeResponse(attendeeEmail, _
recurrenceId, uid, sequence, utcDateTimeOrganizerCriticalChange, _
utcDateTimeAttendeeCriticalChange, _
response)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/SetAttendeeResponse", RequestNamespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/",
ResponseNamespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/",
Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public void SetAttendeeResponse(
string attendeeEmail,
uint recurrenceId,
string uid,
uint sequence,
DateTime utcDateTimeOrganizerCriticalChange,
DateTime utcDateTimeAttendeeCriticalChange,
AttendeeResponse response
)
Parameters
attendeeEmail
Type: System.StringThe e-mail address, specified as email_address@domain.ext, for the responding user.
recurrenceId
Type: System.UInt32The recurrence ID for the meeting. For single instance meetings, this parameter can be set to zero.
uid
Type: System.StringA persistent GUID for the calendar component.
sequence
Type: System.UInt32An integer used to determine the ordering of updates in case they arrive out of sequence. Updates with a lower-than-current sequence are discarded. If the sequence is equal to the current sequence, the latest update is applied.
utcDateTimeOrganizerCriticalChange
Type: System.DateTimeThis parameter is ignored in this release; therefore, this parameter can be a default date time.
utcDateTimeAttendeeCriticalChange
Type: System.DateTimeThe date and time when the instance of the attendee object was created, expressed in Coordinated Universal Time (UTC).
response
Type: [Meetings Web service].AttendeeResponseThe response from the responding user (responseAccepted, responseTentative, or responseDeclined).
Remarks
To access the Meetings service and its methods, set a Web reference to https://Server_Name/[sites/][Site_Name/]_vti_bin/Meetings.asmx.
Examples
SOAP Request Format Following is a sample SOAP request. Replace the placeholders shown with actual values.
POST /_vti_bin/meetings.asmx HTTP/1.1
Host: server_name
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://schemas.microsoft.com/sharepoint/soap/
meetings/SetAttendeeResponse"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SetAttendeeResponse xmlns=
"https://schemas.microsoft.com/sharepoint/soap/meetings/">
<attendeeEmail>string</attendeeEmail>
<recurrenceId>unsignedInt</recurrenceId>
<uid>string</uid>
<sequence>unsignedInt</sequence>
<utcDateTimeOrganizerCriticalChange>dateTime
</utcDateTimeOrganizerCriticalChange>
<utcDateTimeAttendeeCriticalChange>dateTime
</utcDateTimeAttendeeCriticalChange>
<response>responseAccepted
or responseTentative or
responseDeclined</response>
</SetAttendeeResponse>
</soap:Body>
</soap:Envelope>
SOAP Response Format Following is a sample SOAP response. Replace the placeholders shown with actual return values.
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SetAttendeeResponseResponse xmlns=
"https://schemas.microsoft.com/sharepoint/soap/meetings/" />
</soap:Body>
</soap:Envelope>