PUT api/tenant/interview-user/update/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

RecInterviewUserDTOW
NameDescriptionTypeAdditional information
firstname

string

Required

Max length: 100

surname

string

Required

Max length: 100

other_name

string

Max length: 100

gender

string

Max length: 100

admin_status

integer

Required

phone_number

string

Max length: 100

email_address

string

Max length: 100

profile_picture

string

None.

position

string

Max length: 100

about

string

Max length: 1000

Request Formats

application/json, text/json

Sample:
{
  "firstname": "sample string 1",
  "surname": "sample string 2",
  "other_name": "sample string 3",
  "gender": "sample string 4",
  "admin_status": 5,
  "phone_number": "sample string 6",
  "email_address": "sample string 7",
  "profile_picture": "sample string 8",
  "position": "sample string 9",
  "about": "sample string 10"
}

application/xml, text/xml

Sample:
<RecInterviewUserDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <about>sample string 10</about>
  <admin_status>5</admin_status>
  <email_address>sample string 7</email_address>
  <firstname>sample string 1</firstname>
  <gender>sample string 4</gender>
  <other_name>sample string 3</other_name>
  <phone_number>sample string 6</phone_number>
  <position>sample string 9</position>
  <profile_picture>sample string 8</profile_picture>
  <surname>sample string 2</surname>
</RecInterviewUserDTOW>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.