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

    Interface CapturesClient

    interface CapturesClient {
        dispute(
            merchantId: string,
            captureId: string,
            postData: CreateDisputeRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<DisputeResponse, ErrorResponse>>;
        disputes(
            merchantId: string,
            captureId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<DisputesResponse, ErrorResponse>>;
        get(
            merchantId: string,
            captureId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<CaptureResponse, ErrorResponse>>;
        refund(
            merchantId: string,
            captureId: string,
            postData: RefundRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<RefundResponse, RefundErrorResponse>>;
    }
    Index

    Methods