Skip to main content

Get all templates of invoices

Zuora
  • 日本語のコンテンツは機械翻訳されており、補助的な参照を目的としています。機械翻訳の精度は保証できません。英語版が正となります。また、現時点では検索機能は日本語での検索をサポートしていません。翻訳に関するフィードバックについては、docs@zuora.comに送信してください。

Get all templates of invoices

You can list all Invoice Templates, Credit Memo Templates, and Debit Memo Templates by performing GET calls on the corresponding endpoints of the Settings API. This article describes how to list all Invoice Templates in a tenant.

To get all Invoice Templates, see the following request and a sample of 200 response.

HTTP request:

GET https://rest.zuora.com/settings/invoice-templates

Response body:

01[
02  {
03    "name": "System Default Template",
04    "defaultTemplate": true,
05    "suppressZeroValueLine": false,
06    "templateFileName": "Zuora - Invoice  Template - 2016 v1.0 - USD - English (1).doc",
07    "templateCategory": "New",
08    "associatedToBillingAccount": true
09  },
10  {
11    "name": "AllBrighter",
12    "defaultTemplate": false,
13    "suppressZeroValueLine": false,
14    "templateFileName": "Allbrighter - Invoice  Template - 2019 v1.1USD.doc",
15    "templateCategory": "New",
16    "id": "bd5d1b5ce21827df053fda6d43fb4ade"
17    "associatedToBillingAccount": false
18  }
19]
English
日本語