GET api/Customer?customercode={customercode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customercode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CustmerInfo| Name | Description | Type | Additional 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>