POST api/registration/SuggestCustomersInMultiUser

Return list of customers with exclude multi user customers in use

Request Information

URI Parameters

None.

Body Parameters

NameDescriptionTypeAdditional 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.

Email

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

NameDescriptionTypeAdditional 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"
  }
]