All URIs are relative to https://api.getlago.com/api/v1
Method | HTTP request | Description |
---|---|---|
create_invoice | POST /invoices | Create a one-off invoice |
download_invoice | POST /invoices/{lago_id}/download | Download an invoice PDF |
finalize_invoice | PUT /invoices/{lago_id}/finalize | Finalize a draft invoice |
find_all_invoices | GET /invoices | List all invoices |
find_invoice | GET /invoices/{lago_id} | Retrieve an invoice |
refresh_invoice | PUT /invoices/{lago_id}/refresh | Refresh a draft invoice |
retry_payment | POST /invoices/{lago_id}/retry_payment | Retry an invoice payment |
update_invoice | PUT /invoices/{lago_id} | Update an invoice |
create_invoice(invoice_one_off_create_input)
Create a one-off invoice
This endpoint is used for issuing a one-off invoice.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
invoice_one_off_create_input = LagoAPI::InvoiceOneOffCreateInput.new({invoice: LagoAPI::InvoiceOneOffCreateInputInvoice.new({external_customer_id: 'hooli_1234', fees: [LagoAPI::InvoiceOneOffCreateInputInvoiceFeesInner.new({add_on_code: 'setup_fee'})]})}) # InvoiceOneOffCreateInput | Invoice payload
begin
# Create a one-off invoice
result = api_instance.create_invoice(invoice_one_off_create_input)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->create_invoice: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> create_invoice_with_http_info(invoice_one_off_create_input)
begin
# Create a one-off invoice
data, status_code, headers = api_instance.create_invoice_with_http_info(invoice_one_off_create_input)
p status_code # => 2xx
p headers # => { ... }
p data # => <Invoice>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->create_invoice_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
invoice_one_off_create_input | InvoiceOneOffCreateInput | Invoice payload |
- Content-Type: application/json
- Accept: application/json
download_invoice(lago_id)
Download an invoice PDF
This endpoint is used for downloading a specific invoice PDF document.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
lago_id = '1a901a90-1a90-1a90-1a90-1a901a901a90' # String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system.
begin
# Download an invoice PDF
result = api_instance.download_invoice(lago_id)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->download_invoice: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> download_invoice_with_http_info(lago_id)
begin
# Download an invoice PDF
data, status_code, headers = api_instance.download_invoice_with_http_info(lago_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <Invoice>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->download_invoice_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
lago_id | String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system. |
- Content-Type: Not defined
- Accept: application/json
finalize_invoice(lago_id)
Finalize a draft invoice
This endpoint is used for finalizing a draft invoice.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
lago_id = '1a901a90-1a90-1a90-1a90-1a901a901a90' # String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system.
begin
# Finalize a draft invoice
result = api_instance.finalize_invoice(lago_id)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->finalize_invoice: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> finalize_invoice_with_http_info(lago_id)
begin
# Finalize a draft invoice
data, status_code, headers = api_instance.finalize_invoice_with_http_info(lago_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <Invoice>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->finalize_invoice_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
lago_id | String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system. |
- Content-Type: Not defined
- Accept: application/json
find_all_invoices(opts)
List all invoices
This endpoint is used for retrievign all invoices.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
opts = {
page: 1, # Integer | Page number.
per_page: 20, # Integer | Number of records per page.
external_customer_id: '5eb02857-a71e-4ea2-bcf9-57d3a41bc6ba', # String | Unique identifier assigned to the customer in your application.
issuing_date_from: Date.parse('Fri Jul 08 00:00:00 UTC 2022'), # Date | Filter invoices starting from a specific date.
issuing_date_to: Date.parse('Tue Aug 09 00:00:00 UTC 2022'), # Date | Filter invoices up to a specific date.
status: 'draft', # String | Filter invoices by status. Possible values are `draft` or `finalized`.
payment_status: 'pending' # String | Filter invoices by payment status. Possible values are `pending`, `failed` or `succeeded`.
}
begin
# List all invoices
result = api_instance.find_all_invoices(opts)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->find_all_invoices: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> find_all_invoices_with_http_info(opts)
begin
# List all invoices
data, status_code, headers = api_instance.find_all_invoices_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <InvoicesPaginated>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->find_all_invoices_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
page | Integer | Page number. | [optional] |
per_page | Integer | Number of records per page. | [optional] |
external_customer_id | String | Unique identifier assigned to the customer in your application. | [optional] |
issuing_date_from | Date | Filter invoices starting from a specific date. | [optional] |
issuing_date_to | Date | Filter invoices up to a specific date. | [optional] |
status | String | Filter invoices by status. Possible values are `draft` or `finalized`. | [optional] |
payment_status | String | Filter invoices by payment status. Possible values are `pending`, `failed` or `succeeded`. | [optional] |
- Content-Type: Not defined
- Accept: application/json
find_invoice(lago_id)
Retrieve an invoice
This endpoint is used for retrieving a specific invoice that has been issued.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
lago_id = '1a901a90-1a90-1a90-1a90-1a901a901a90' # String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system.
begin
# Retrieve an invoice
result = api_instance.find_invoice(lago_id)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->find_invoice: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> find_invoice_with_http_info(lago_id)
begin
# Retrieve an invoice
data, status_code, headers = api_instance.find_invoice_with_http_info(lago_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <Invoice>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->find_invoice_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
lago_id | String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system. |
- Content-Type: Not defined
- Accept: application/json
refresh_invoice(lago_id)
Refresh a draft invoice
This endpoint is used for refreshing a draft invoice.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
lago_id = '1a901a90-1a90-1a90-1a90-1a901a901a90' # String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system.
begin
# Refresh a draft invoice
result = api_instance.refresh_invoice(lago_id)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->refresh_invoice: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> refresh_invoice_with_http_info(lago_id)
begin
# Refresh a draft invoice
data, status_code, headers = api_instance.refresh_invoice_with_http_info(lago_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <Invoice>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->refresh_invoice_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
lago_id | String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system. |
- Content-Type: Not defined
- Accept: application/json
retry_payment(lago_id)
Retry an invoice payment
This endpoint resends an invoice for collection and retry a payment.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
lago_id = '1a901a90-1a90-1a90-1a90-1a901a901a90' # String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system.
begin
# Retry an invoice payment
api_instance.retry_payment(lago_id)
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->retry_payment: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> retry_payment_with_http_info(lago_id)
begin
# Retry an invoice payment
data, status_code, headers = api_instance.retry_payment_with_http_info(lago_id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->retry_payment_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
lago_id | String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system. |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/json
update_invoice(lago_id, invoice_update_input)
Update an invoice
This endpoint is used for updating an existing invoice.
require 'time'
require 'lago_ruby'
# setup authorization
LagoAPI.configure do |config|
# Configure Bearer authorization: bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = LagoAPI::InvoicesApi.new
lago_id = '1a901a90-1a90-1a90-1a90-1a901a901a90' # String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system.
invoice_update_input = LagoAPI::InvoiceUpdateInput.new({invoice: LagoAPI::InvoiceUpdateInputInvoice.new}) # InvoiceUpdateInput | Update an existing invoice
begin
# Update an invoice
result = api_instance.update_invoice(lago_id, invoice_update_input)
p result
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->update_invoice: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> update_invoice_with_http_info(lago_id, invoice_update_input)
begin
# Update an invoice
data, status_code, headers = api_instance.update_invoice_with_http_info(lago_id, invoice_update_input)
p status_code # => 2xx
p headers # => { ... }
p data # => <Invoice>
rescue LagoAPI::ApiError => e
puts "Error when calling InvoicesApi->update_invoice_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
lago_id | String | Unique identifier assigned to the invoice within the Lago application. This ID is exclusively created by Lago and serves as a unique identifier for the invoice’s record within the Lago system. | |
invoice_update_input | InvoiceUpdateInput | Update an existing invoice |
- Content-Type: application/json
- Accept: application/json