POST api/v3/Account/PaymentConfirm
Request Information
URI Parameters
None.
Body Parameters
PaymentConfirmRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentProvider | string |
None. |
|
| Type | string |
None. |
|
| PayerId | string |
None. |
|
| PaymentId | string |
None. |
|
| InvoiceId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"paymentProvider": "sample string 1",
"type": "sample string 2",
"payerId": "sample string 3",
"paymentId": "sample string 4",
"invoiceId": "sample string 5"
}
text/html
Sample:
{"paymentProvider":"sample string 1","type":"sample string 2","payerId":"sample string 3","paymentId":"sample string 4","invoiceId":"sample string 5"}
application/xml, text/xml
Sample:
<PaymentConfirmRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IC_Web_API_V3.Models"> <InvoiceId>sample string 5</InvoiceId> <PayerId>sample string 3</PayerId> <PaymentId>sample string 4</PaymentId> <PaymentProvider>sample string 1</PaymentProvider> <Type>sample string 2</Type> </PaymentConfirmRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |