GET api/Customer?customercode={customercode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customercode

string

Required

Body Parameters

None.

Response Information

Resource Description

CustmerInfo
NameDescriptionTypeAdditional information
CustomerCode

string

None.

CustomerId

integer

None.

Url

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerCode": "sample string 1",
  "CustomerId": 2,
  "Url": "sample string 3"
}

application/xml, text/xml

Sample:
<CustmerInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScholaMobileAppServer.Models.ApiModel">
  <CustomerCode>sample string 1</CustomerCode>
  <CustomerId>2</CustomerId>
  <Url>sample string 3</Url>
</CustmerInfo>