POST api/bo/customers
Create Customer
Request Information
URI Parameters
None.
Body Parameters
m_customer_create_bo| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerUsername | string |
Required String length: inclusive between 0 and 15 |
|
| CustomerCountryCode | string |
Required String length: inclusive between 0 and 10 |
|
| CustomerPhoneNo | string |
Required String length: inclusive between 0 and 20 |
|
| CustomerPassword | string |
Required String length: inclusive between 0 and 255 |
Request Formats
application/json, text/json
Sample:
{
"CustomerUsername": "sample string 1",
"CustomerCountryCode": "sample string 2",
"CustomerPhoneNo": "sample string 3",
"CustomerPassword": "sample string 4"
}
application/xml, text/xml
Sample:
<m_customer_create_bo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KFA.Modules.Models.Mainsystem"> <CustomerCountryCode>sample string 2</CustomerCountryCode> <CustomerPassword>sample string 4</CustomerPassword> <CustomerPhoneNo>sample string 3</CustomerPhoneNo> <CustomerUsername>sample string 1</CustomerUsername> </m_customer_create_bo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.