Worldline Connect Node.js SDK
    Preparing search index...

    Interface HostedcheckoutsClient

    interface HostedcheckoutsClient {
        create(
            merchantId: string,
            postData: CreateHostedCheckoutRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<CreateHostedCheckoutResponse, ErrorResponse>>;
        get(
            merchantId: string,
            hostedCheckoutId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<GetHostedCheckoutResponse, ErrorResponse>>;
        remove(
            merchantId: string,
            hostedCheckoutId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<void, ErrorResponse>>;
    }
    Index

    Methods

    Methods