CheckoutSession
merchantRefNumstring
The merchant reference number of the checkout session
amountinteger<int64>
The amount to be transferred to the recipient in minor units.
currencyCodeCurrency (string)
Currency alphabetic code as specified by ISO 4217
Possible values: >= 3 characters and <= 3 characters
Example:
EURreturnUrlstring
The redirect URL of the session
recipient object
customerIdCustomerId (string)required
The id of the wallet.
sender object
customerIdCustomerId (string)
The id of the wallet.
emailstring
The email address of the sender associated with the wallet account email
lineItems object[]
Array [
descriptionstring
The name of the item
productCodestring
The product code of the item
quantityinteger
The quantity of the item
unitAmountinteger<int64>
The unit amount of the item
totalAmountinteger<int64>
The total amount of the item
]
CheckoutSession
{
"merchantRefNum": "string",
"amount": 0,
"currencyCode": "EUR",
"returnUrl": "string",
"recipient": {
"customerId": "string"
},
"sender": {
"customerId": "string",
"email": "string"
},
"lineItems": [
{
"description": "string",
"productCode": "string",
"quantity": 0,
"unitAmount": 0,
"totalAmount": 0
}
]
}