POST api/v1/Payment/SaveInfo
Request Information
URI Parameters
None.
Body Parameters
Collection of PaymentRequestInformation| Name | Description | Type | Additional information |
|---|---|---|---|
| paymentrequestId | integer |
None. |
|
| ID | string |
None. |
|
| Value | string |
None. |
|
| Type | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"paymentrequestId": 1,
"ID": "sample string 2",
"Value": "sample string 3",
"Type": "sample string 4"
},
{
"paymentrequestId": 1,
"ID": "sample string 2",
"Value": "sample string 3",
"Type": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfPRS.PaymentRequestInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortalEntities.Models">
<PRS.PaymentRequestInformation>
<ID>sample string 2</ID>
<Type>sample string 4</Type>
<Value>sample string 3</Value>
<paymentrequestId>1</paymentrequestId>
</PRS.PaymentRequestInformation>
<PRS.PaymentRequestInformation>
<ID>sample string 2</ID>
<Type>sample string 4</Type>
<Value>sample string 3</Value>
<paymentrequestId>1</paymentrequestId>
</PRS.PaymentRequestInformation>
</ArrayOfPRS.PaymentRequestInformation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>