GET api/Merchant/TransactionCategory?Id={Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
ServiceResultOfListOfSvcDropDownMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Description | string |
None. |
|
| Result | boolean |
None. |
|
| Data | Collection of SvcDropDownMDL |
None. |
|
| status | integer |
None. |
|
| TotalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Description": "sample string 2",
"Result": true,
"Data": [
{
"ID": 1,
"Value": "sample string 2"
},
{
"ID": 1,
"Value": "sample string 2"
}
],
"status": 4,
"TotalCount": 5
}
application/xml, text/xml
Sample:
<ServiceResultOfArrayOfSvcDropDownMDLpVHpxC82 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.FTSServices">
<Data>
<SvcDropDownMDL>
<ID>1</ID>
<Value>sample string 2</Value>
</SvcDropDownMDL>
<SvcDropDownMDL>
<ID>1</ID>
<Value>sample string 2</Value>
</SvcDropDownMDL>
</Data>
<Description>sample string 2</Description>
<Message>sample string 1</Message>
<Result>true</Result>
<TotalCount>5</TotalCount>
<status>4</status>
</ServiceResultOfArrayOfSvcDropDownMDLpVHpxC82>