POST api/Customer/UpdateCustomer

Request Information

URI Parameters

None.

Body Parameters

CustomerModel
NameDescriptionTypeAdditional information
Id

integer

None.

Sex

byte

None.

IdTypeId

integer

None.

EMail

string

None.

DOB

date

None.

IsActive

boolean

None.

LastName

string

None.

FirstName

string

None.

IdTypeName

string

None.

PersonalId

string

None.

TelNumber1

string

None.

TelNumber2

string

None.

CustomerLevelId

integer

None.

CustomerLevelName

string

None.

ExtRef

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Sex": 64,
  "IdTypeId": 3,
  "EMail": "sample string 4",
  "DOB": "2026-06-24T14:35:03.3160522-05:00",
  "IsActive": true,
  "LastName": "sample string 7",
  "FirstName": "sample string 8",
  "IdTypeName": "sample string 9",
  "PersonalId": "sample string 10",
  "TelNumber1": "sample string 11",
  "TelNumber2": "sample string 12",
  "CustomerLevelId": 13,
  "CustomerLevelName": "sample string 14",
  "ExtRef": "sample string 15"
}

application/xml, text/xml

Sample:
<CustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LobbyVirtual_Issatec_API.Models.Customer">
  <CustomerLevelId>13</CustomerLevelId>
  <CustomerLevelName>sample string 14</CustomerLevelName>
  <DOB>2026-06-24T14:35:03.3160522-05:00</DOB>
  <EMail>sample string 4</EMail>
  <ExtRef>sample string 15</ExtRef>
  <FirstName>sample string 8</FirstName>
  <Id>1</Id>
  <IdTypeId>3</IdTypeId>
  <IdTypeName>sample string 9</IdTypeName>
  <IsActive>true</IsActive>
  <LastName>sample string 7</LastName>
  <PersonalId>sample string 10</PersonalId>
  <Sex>64</Sex>
  <TelNumber1>sample string 11</TelNumber1>
  <TelNumber2>sample string 12</TelNumber2>
</CustomerModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.