GetSopPaymentRequestProps
Properties for creating a payment request.
interface GetSopPaymentRequestProps extends BaseProps {
cartId: string;
extendedMerchantCallback?: boolean;
responseUrl: string;
userId: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
cartId | Required | string | Cart identifier: cart code for logged-in user, cart guid for anonymous user, current for the last modified cart. |
extendedMerchantCallback | Optional | boolean | Defines which url should be returned |
responseUrl | Required | string | The URL that the payment provider uses to return payment information |
userId | Required | string | User identifier or one of the literals: current for currently authenticated user, anonymous for anonymous user. |