POST api/Customer/CreateCustomer

Request Information

URI Parameters

None.

Body Parameters

RegisterCustomerModel
NameDescriptionTypeAdditional information
CustomerID

integer

None.

CustomerName

string

None.

MobileNo

string

None.

Email

string

None.

DOB

date

None.

Gender

string

None.

ProfileImage

string

None.

TimeZone

string

None.

Country

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerID": 1,
  "CustomerName": "sample string 2",
  "MobileNo": "sample string 3",
  "Email": "sample string 4",
  "DOB": "2026-01-02T22:03:27.2483248+05:30",
  "Gender": "sample string 5",
  "ProfileImage": "sample string 6",
  "TimeZone": "sample string 7",
  "Country": "sample string 8"
}

application/xml, text/xml

Sample:
<RegisterCustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/kcm_api_portal.Models">
  <Country>sample string 8</Country>
  <CustomerID>1</CustomerID>
  <CustomerName>sample string 2</CustomerName>
  <DOB>2026-01-02T22:03:27.2483248+05:30</DOB>
  <Email>sample string 4</Email>
  <Gender>sample string 5</Gender>
  <MobileNo>sample string 3</MobileNo>
  <ProfileImage>sample string 6</ProfileImage>
  <TimeZone>sample string 7</TimeZone>
</RegisterCustomerModel>

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.