postPaymentSessions

@Deprecated(message = "Use execute method instead", replaceWith = @ReplaceWith(imports = {}, expression = "execute(operation: PostPaymentSessionsOperation)"))
public final PaymentSessions postPaymentSessions(String customerIp, String token, PaymentSessionsRequest paymentSessionsRequest, String customerSessionId, String test)
@Deprecated(message = "Use execute method instead", replaceWith = @ReplaceWith(imports = {}, expression = "execute(operation: PostPaymentSessionsOperation)"))
public final PaymentSessions postPaymentSessions(String customerIp, String token, PaymentSessionsRequest paymentSessionsRequest, String customerSessionId)
@Deprecated(message = "Use execute method instead", replaceWith = @ReplaceWith(imports = {}, expression = "execute(operation: PostPaymentSessionsOperation)"))
public final PaymentSessions postPaymentSessions(String customerIp, String token, PaymentSessionsRequest paymentSessionsRequest)

Deprecated

Use execute method instead

Replace with

execute(operation: PostPaymentSessionsOperation)

Register Payments This link only applies to transactions where EPS takes the customer's payment information. This includes both Expedia Collect and Property Collect transactions.
This link will be available in the Price Check response if payment registration is required. It returns a payment session ID and a link to create a booking. This will be the first step in the booking flow only if you've opted into Two-Factor Authentication to comply with the September 2019 EU Regulations for PSD2. Learn more with our PSD2 Overview

Return

PaymentSessions

Parameters

customerIp

IP address of the customer, as captured by your integration.
Ensure your integration passes the customer's IP, not your own. This value helps determine their location and assign the correct payment gateway.
Also used for fraud recovery and other important analytics.

token

Provided as part of the link object and used to maintain state across calls. This simplifies each subsequent call by limiting the amount of information required at each step and reduces the potential for errors. Token values cannot be viewed or changed.

paymentSessionsRequest
customerSessionId

Insert your own unique value for each user session, beginning with the first API call. Continue to pass the same value for each subsequent API call during the user's session, using a new value for every new customer session.
Including this value greatly eases EPS's internal debugging process for issues with partner requests, as it explicitly links together request paths for individual user's session. (optional)

test

The book call has a test header that can be used to return set responses with the following keywords:
* standard * service_unavailable * internal_server_error (optional)

Throws