POST api/registration/SuggestCustomersInMultiUser
Return list of customers with exclude multi user customers in use
Request Information
URI Parameters
None.
Body Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CountryId |
Country ID |
integer |
Required |
LanguageId |
Language ID |
integer |
None. |
Expression |
First Latters of Customer Name or Empty |
string |
None. |
ResultItemsAmount |
By Default Value Equal to 10 |
integer |
None. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "countryId": 1, "languageId": 1, "expression": "sample string 2", "resultItemsAmount": 3, "email": "sample string 4" }
Response Information
Name | Description | Type | Additional information |
---|---|---|---|
CustomerId |
Customer Id |
integer |
None. |
Name |
Customer Name |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "customerId": 1, "name": "sample string 2" }, { "customerId": 1, "name": "sample string 2" } ]