PayerInvitesApi - functional programming interface export

  • Parameters

    Returns {
        acceptPayerInvite(paymentInviteAcceptCreateDeets?: PaymentInviteAcceptCreateDeets, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponse>)>;
        getPayerInviteById(id: string, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponse>)>;
        getPayerInviteProfile(options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteProfileResponse>)>;
        listPayerInvites(emailAddress?: string, inviteStatus?: PayerInviteStatus, limit?: number, page?: number, userId?: string, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponseListResponse>)>;
        sendPayerInvite(paymentInviteCreateDeets?: PaymentInviteCreateDeets, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponse>)>;
    }

    • acceptPayerInvite:function
      • summary Accept payer invite

        Parameters

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponse>)>

    • getPayerInviteById:function
      • summary Get payer invite details by id

        Parameters

        • id: string
        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponse>)>

    • getPayerInviteProfile:function
      • summary Get the current user payer profile

        Parameters

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteProfileResponse>)>

    • listPayerInvites:function
      • summary Retrieve a list of sent payer invites

        Parameters

        • OptionalemailAddress: string
        • OptionalinviteStatus: PayerInviteStatus

          sent accepted expired

        • Optionallimit: number

          A limit of the number of objects to be returned for the next page, between 1 and 100. The default is 25

        • Optionalpage: number

          1-based page index for paginated results

        • OptionaluserId: string

          The user id to operate on their behalf (tenants only)

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponseListResponse>)>

    • sendPayerInvite:function
      • summary Send payer invite request.

        Parameters

        • OptionalpaymentInviteCreateDeets: PaymentInviteCreateDeets
        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayerInviteResponse>)>