POST check/{code}/pay/cps
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
code | string |
Required |
Body Parameters
SavedCardPaymentRequestName | Description | Type | Additional information |
---|---|---|---|
cardReference | globally unique identifier |
None. |
|
cpsCustomerProfileId | globally unique identifier |
None. |
|
cpsCompanyCode | string |
None. |
|
amount | decimal number |
None. |
|
tipAmount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "cardReference": "1e9d2453-bab0-4413-bb22-404624c0fde2", "cpsCustomerProfileId": "9d491a59-c74b-450a-bf90-1fd65733b412", "cpsCompanyCode": "sample string 3", "amount": 4.0, "tipAmount": 5.0 }
application/xml, text/xml
Sample:
<SavedCardPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pay.Platform.Site.Core.Contracts.Requests"> <amount>4</amount> <cardReference>1e9d2453-bab0-4413-bb22-404624c0fde2</cardReference> <cpsCompanyCode>sample string 3</cpsCompanyCode> <cpsCustomerProfileId>9d491a59-c74b-450a-bf90-1fd65733b412</cpsCustomerProfileId> <tipAmount>5</tipAmount> </SavedCardPaymentRequest>
Response Information
Resource Description
ApplyTenderPaymentResponseName | Description | Type | Additional information |
---|---|---|---|
PaymentId | integer |
None. |
|
Code | ErrorCode |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "PaymentId": 1, "Code": 0, "Message": "" }
application/xml, text/xml
Sample:
<ApplyTenderPaymentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pay.Platform.Site.Core.Contracts.Responses"> <Code>None</Code> <Message></Message> <PaymentId>1</PaymentId> </ApplyTenderPaymentResponse>