PUT Api/TourOperatorProfiles/Employee/Update?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

UpdateCompanyUserBindingModel
NameDescriptionTypeAdditional information
Id

string

None.

Firstname

string

None.

Lastname

string

None.

Address

string

None.

PhoneNumber

string

None.

Email

string

None.

ImageName

string

String length: inclusive between 0 and 100

ImageContent

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Firstname": "sample string 2",
  "Lastname": "sample string 3",
  "Address": "sample string 4",
  "PhoneNumber": "sample string 5",
  "Email": "sample string 6",
  "ImageName": "sample string 7",
  "ImageContent": "sample string 8"
}

application/xml, text/xml

Sample:
<UpdateCompanyUserBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models">
  <ImageContent xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO">sample string 8</ImageContent>
  <ImageName xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO">sample string 7</ImageName>
  <Address>sample string 4</Address>
  <Email>sample string 6</Email>
  <Firstname>sample string 2</Firstname>
  <Id>sample string 1</Id>
  <Lastname>sample string 3</Lastname>
  <PhoneNumber>sample string 5</PhoneNumber>
</UpdateCompanyUserBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.