PUT api/ExternalEntitites/UpdateExternalUser

Request Information

URI Parameters

None.

Body Parameters

UpdateExternalUserRequestDTO
NameDescriptionTypeAdditional information
Id

integer

None.

Firstname

string

None.

Lastname

string

None.

NfcTag

string

None.

InternalID

string

None.

PhoneNum

string

None.

Email

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Firstname": "sample string 2",
  "Lastname": "sample string 3",
  "NfcTag": "sample string 4",
  "InternalID": "sample string 5",
  "PhoneNum": "sample string 6",
  "Email": "sample string 7"
}

application/xml, text/xml

Sample:
<UpdateExternalUserRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.ExternalEntities">
  <Email>sample string 7</Email>
  <Firstname>sample string 2</Firstname>
  <Id>1</Id>
  <InternalID>sample string 5</InternalID>
  <Lastname>sample string 3</Lastname>
  <NfcTag>sample string 4</NfcTag>
  <PhoneNum>sample string 6</PhoneNum>
</UpdateExternalUserRequestDTO>

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 'UpdateExternalUserRequestDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.