POST Api/MedPayment/ProcessPayment
Request Information
URI Parameters
None.
Body Parameters
MedPaymentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TransientTokenJwt | string |
None. |
|
| PaymentReference | string |
None. |
|
| Amount | decimal number |
None. |
|
| Currency | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TransientTokenJwt": "sample string 1",
"PaymentReference": "sample string 2",
"Amount": 3.0,
"Currency": "sample string 4"
}
application/xml, text/xml
Sample:
<MedPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileAPI.Models.Med"><Amount>3</Amount><Currency>sample string 4</Currency><PaymentReference>sample string 2</PaymentReference><TransientTokenJwt>sample string 1</TransientTokenJwt></MedPaymentRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.