POST updateWorkshopAttendence

Request Information

URI Parameters

None.

Body Parameters

UserSessionAttendenceDTO
NameDescriptionTypeAdditional information
Id

integer

None.

FirstName

string

None.

LastName

string

None.

UserGUID

string

None.

Email

string

None.

Type

string

None.

Attended

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "UserGUID": "sample string 4",
  "Email": "sample string 5",
  "Type": "sample string 6",
  "Attended": true
}

application/xml, text/xml

Sample:
<UserSessionAttendenceDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DANZAMIOApi.Models">
  <Attended>true</Attended>
  <Email>sample string 5</Email>
  <FirstName>sample string 2</FirstName>
  <Id>1</Id>
  <LastName>sample string 3</LastName>
  <Type>sample string 6</Type>
  <UserGUID>sample string 4</UserGUID>
</UserSessionAttendenceDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UserSessionAttendenceDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.