DELETE api/CustomersRestV2/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Customer
NameDescriptionTypeAdditional information
CustomerID

integer

None.

CustomerFirstName

string

None.

CustomerMiddleName

string

None.

CustomerLastName

string

None.

CustomerPreferredName

string

None.

CustomerLogin

string

None.

MobileNumber

string

None.

Email

string

None.

Image

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerID": 1,
  "CustomerFirstName": "sample string 2",
  "CustomerMiddleName": "sample string 3",
  "CustomerLastName": "sample string 4",
  "CustomerPreferredName": "sample string 5",
  "CustomerLogin": "sample string 6",
  "MobileNumber": "sample string 7",
  "Email": "sample string 8",
  "Image": "sample string 9"
}

application/xml, text/xml

Sample:
<Customer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InnoBank.Models">
  <CustomerFirstName>sample string 2</CustomerFirstName>
  <CustomerID>1</CustomerID>
  <CustomerLastName>sample string 4</CustomerLastName>
  <CustomerLogin>sample string 6</CustomerLogin>
  <CustomerMiddleName>sample string 3</CustomerMiddleName>
  <CustomerPreferredName>sample string 5</CustomerPreferredName>
  <Email>sample string 8</Email>
  <Image>sample string 9</Image>
  <MobileNumber>sample string 7</MobileNumber>
</Customer>