Method: InvoiceAddressesClient#delete_invoice_address

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

#delete_invoice_address(id:) ⇒ Object

Deletes the Invoice Address by this unique identifier.

An Invoice Address contains address information about an invoice. You can use Invoice Addresses to track information about locations important to an invoice such as: where a company’s goods are shipped from, where a company’s goods are shipped to or billing addresses to name a few.

Parameters:

  • id (uuid)

    The unique ID of the Invoice Address to delete



46
47
48
49
# File 'lib/lockstep_sdk/clients/invoice_addresses_client.rb', line 46

def delete_invoice_address(id:)
    path = "/api/v1/invoice-addresses/#{id}"
    @connection.request(:delete, path, nil, nil)
end