Method: InvoiceHistoryClient#retrieve_invoice_history

Defined in:
lib/lockstep_sdk/clients/invoice_history_client.rb

#retrieve_invoice_history(id:) ⇒ Object

Retrieves the history of the Invoice specified by this unique identifier.

An Invoice represents a bill sent from one company to another. The Lockstep Platform tracks changes to each Invoice so that you can observe the changes over time. You can view the InvoiceHistory list to monitor and observe the changes of this Invoice and track the dates when changes occurred.

Parameters:

  • id (uuid)

    The unique Lockstep Platform ID number of this invoice; NOT the customer’s ERP key



33
34
35
36
# File 'lib/lockstep_sdk/clients/invoice_history_client.rb', line 33

def retrieve_invoice_history(id:)
    path = "/api/v1/InvoiceHistory/#{id}"
    @connection.request(:get, path, nil, nil)
end