POST api/v1/Customer/GetCustomerWithAnAccount

Request Information

URI Parameters

None.

Body Parameters

Collection of CustomerWithAnAccountRequest
NameDescriptionTypeAdditional information
PhoneNumber

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "PhoneNumber": "sample string 1"
  },
  {
    "PhoneNumber": "sample string 1"
  }
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResponseOfListOfCustomerWithAnAccountResponse
NameDescriptionTypeAdditional information
Code

integer

None.

Message

string

None.

Response

Collection of CustomerWithAnAccountResponse

None.

IsShowMessage

boolean

None.

IsShowRateAndReview

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 1,
  "Message": "sample string 2",
  "Response": [
    {
      "PhoneNumber": "sample string 1",
      "HasCustomer": true,
      "Image": "sample string 3"
    },
    {
      "PhoneNumber": "sample string 1",
      "HasCustomer": true,
      "Image": "sample string 3"
    }
  ],
  "IsShowMessage": true,
  "IsShowRateAndReview": true
}