Method: Stripe::InvoiceRenderingTemplateService#list
- Defined in:
- lib/stripe/services/invoice_rendering_template_service.rb
#list(params = {}, opts = {}) ⇒ Object
List all templates, ordered by creation date, with the most recently created template appearing first.
18 19 20 21 22 23 24 25 26 |
# File 'lib/stripe/services/invoice_rendering_template_service.rb', line 18 def list(params = {}, opts = {}) request( method: :get, path: "/v1/invoice_rendering_templates", params: params, opts: opts, base_address: :api ) end |