POST api/member/create
To Customer Signup
Request Information
URI Parameters
None.
Body Parameters
mlCustomer| Name | description | Type | Additional information |
|---|---|---|---|
| Customername | string |
None. |
|
| Mobile | string |
None. |
|
| EmailID | string |
None. |
|
| StateID | integer |
None. |
|
| DistrictID | integer |
None. |
|
| CityID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CityID": 6,
"Customername": "sample string 1",
"DistrictID": 5,
"EmailID": "sample string 3",
"Mobile": "sample string 2",
"StateID": 4
}
application/xml, text/xml
Sample:
<mlCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Systemic.MLM.Model.Member"> <CityID>6</CityID> <Customername>sample string 1</Customername> <DistrictID>5</DistrictID> <EmailID>sample string 3</EmailID> <Mobile>sample string 2</Mobile> <StateID>4</StateID> </mlCustomer>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |