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

    Interface PayoutsClient

    interface PayoutsClient {
        approve(
            merchantId: string,
            payoutId: string,
            postData: ApprovePayoutRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<PayoutResponse, ErrorResponse>>;
        cancel(
            merchantId: string,
            payoutId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<void, ErrorResponse>>;
        cancelapproval(
            merchantId: string,
            payoutId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<void, ErrorResponse>>;
        create(
            merchantId: string,
            postData: CreatePayoutRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<PayoutResponse, PayoutErrorResponse>>;
        find(
            merchantId: string,
            paymentContext: FindPayoutsParams,
        ): Promise<SdkResponse<FindPayoutsResponse, ErrorResponse>>;
        get(
            merchantId: string,
            payoutId: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<PayoutResponse, ErrorResponse>>;
    }
    Index

    Methods