Tipalti.IFrame.PaymentsHistory (tipalti v0.10.0) View Source

Generate URLs for the Tipalti Payments History iFrame.

Link to this section Summary

Functions

Generates a Payments History iFrame URL for the given payee.

Link to this section Functions

Specs

url(Tipalti.idap()) :: URI.t()

Generates a Payments History iFrame URL for the given payee.

Examples

iex> url("mypayee")
%URI{
  authority: "ui2.sandbox.tipalti.com",
  fragment: nil,
  host: "ui2.sandbox.tipalti.com",
  path: "/PayeeDashboard/PaymentsHistory",
  port: 443,
  query: "idap=mypayee&payer=MyPayer&ts=1521234048&hashkey=9413b4db4c08519497b6c236861049793e8834ac4de5e3cd866b7fec96e54eaa",
  scheme: "https",
  userinfo: nil
}

iex> url("mypayee") |> URI.to_string()
"https://ui2.sandbox.tipalti.com/PayeeDashboard/PaymentsHistory?idap=mypayee&payer=MyPayer&ts=1521234048&hashkey=9413b4db4c08519497b6c236861049793e8834ac4de5e3cd866b7fec96e54eaa"