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

    Interface MandatesClient

    interface MandatesClient {
        block(
            merchantId: string,
            uniqueMandateReference: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<GetMandateResponse, ErrorResponse>>;
        create(
            merchantId: string,
            postData: CreateMandateRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<CreateMandateResponse, ErrorResponse>>;
        createWithMandateReference(
            merchantId: string,
            uniqueMandateReference: string,
            postData: CreateMandateRequest,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<CreateMandateResponse, ErrorResponse>>;
        get(
            merchantId: string,
            uniqueMandateReference: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<GetMandateResponse, ErrorResponse>>;
        revoke(
            merchantId: string,
            uniqueMandateReference: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<GetMandateResponse, ErrorResponse>>;
        unblock(
            merchantId: string,
            uniqueMandateReference: string,
            paymentContext?: PaymentContext | null,
        ): Promise<SdkResponse<GetMandateResponse, ErrorResponse>>;
    }
    Index

    Methods