GET api/Order/GetPaymentMode?securityKey={securityKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| securityKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PaymentMode| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityKey | string |
None. |
|
| PaymentModeId | integer |
None. |
|
| PaymentModeName | string |
None. |
|
| isShow | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SecurityKey": "sample string 1",
"PaymentModeId": 2,
"PaymentModeName": "sample string 3",
"isShow": true
},
{
"SecurityKey": "sample string 1",
"PaymentModeId": 2,
"PaymentModeName": "sample string 3",
"isShow": true
}
]
text/html
Sample:
[{"SecurityKey":"sample string 1","PaymentModeId":2,"PaymentModeName":"sample string 3","isShow":true},{"SecurityKey":"sample string 1","PaymentModeId":2,"PaymentModeName":"sample string 3","isShow":true}]
application/xml, text/xml
Sample:
<ArrayOfPaymentMode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model">
<PaymentMode>
<PaymentModeId>2</PaymentModeId>
<PaymentModeName>sample string 3</PaymentModeName>
<SecurityKey>sample string 1</SecurityKey>
<isShow>true</isShow>
</PaymentMode>
<PaymentMode>
<PaymentModeId>2</PaymentModeId>
<PaymentModeName>sample string 3</PaymentModeName>
<SecurityKey>sample string 1</SecurityKey>
<isShow>true</isShow>
</PaymentMode>
</ArrayOfPaymentMode>