POST api/SendPayAPI/DicType
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DicTypeRes| Name | Description | Type | Additional information |
|---|---|---|---|
| responseCode | string |
None. |
|
| responseDesc | string |
None. |
|
| responseData | Collection of DicTypeData |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": "sample string 1",
"responseDesc": "sample string 2",
"responseData": [
{
"dicCode": "sample string 1",
"version": 2
},
{
"dicCode": "sample string 1",
"version": 2
}
]
}
application/xml, text/xml
Sample:
<DicTypeRes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sendmn.Inbound.Models">
<responseCode>sample string 1</responseCode>
<responseData>
<DicTypeData>
<dicCode>sample string 1</dicCode>
<version>2</version>
</DicTypeData>
<DicTypeData>
<dicCode>sample string 1</dicCode>
<version>2</version>
</DicTypeData>
</responseData>
<responseDesc>sample string 2</responseDesc>
</DicTypeRes>