Tipalti.API.Payee.get_payee_invoices_changed_since_timestamp

You're seeing just the function get_payee_invoices_changed_since_timestamp, go back to Tipalti.API.Payee module for more information.
Link to this function

get_payee_invoices_changed_since_timestamp(utc_time)

View Source

Specs

get_payee_invoices_changed_since_timestamp(DateTime.t()) ::
  {:ok, [String.t()]}
  | {:error, Tipalti.ClientError.t()}
  | {:error, Tipalti.RequestError.t()}

Returns all invoice reference codes that were updated since the given UTC timestamp.

Parameters

  • utc_time: a UTC DateTime struct

Examples

  iex> {:ok, utc_time, _} = DateTime.from_iso8601("2018-07-01T00:00:00Z")
  iex> get_payee_invoices_changed_since_timestamp(utc_time)
  {:ok, ["12345", "12346", "12347"]}