GET api/Orders/GetPaymentMethodList
Get payment method list
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PaymentMethodVM| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Payment method id |
integer |
None. |
| Name |
Payment method name |
string |
None. |
| Value |
payment method value, means need to send it |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "Credit Card",
"value": "credit"
},
{
"id": 2,
"name": "Purchase Orde",
"value": "po"
},
{
"id": 3,
"name": "Check",
"value": "check"
},
{
"id": 4,
"name": "Target",
"value": "target"
}
]