QR Invoice REST API (2.0)

The QR Invoice REST API provides various services for creation and processing of Swiss QR Invoices. This API is available as a Cloud Service but is also available as a self-hosted solution.

Product Website

www.qr-invoice.ch

API Key

This API requires an API Key for authorization on the Cloud. You may use the following Demo API Key or request a trial API on our website: QrInvoice - Order Trial Key
582c9ea9-741a-4bb6-acae-cf92f8805864

Important: Use of Demo API Key comes with a few restrictions!

Hints

  • Please note, that you can retrieve JSON example documents in the «00 Example Data» section using the respective Endpoints. E.g.: https://rest.qr-invoice.cloud/v2/examples/qr-invoice/with-qr-reference
  • Handle error responses correctly by checking HTTP status and read detailed error/validation message from response body
  • Check all parameters
  • Check out length limitation
  • Consult official standards / specification if you need more detailed information regarding QR-Bill specification

Standards / Specifications

Overview of official specs www.qr-invoice.ch/dokumentation/standards-merkblaetter/

QR Invoice Layers


QR Invoice Model



Product Version: 1.21-SNAPSHOT

Download OpenAPI description
Languages
Servers
Generated server url

https://rest.qr-invoice.cloud/

00 Example Data

Various example data that can be used as example input to other services

Operations

Invoice Document - Example with QR Reference

Request

Security
X-API-Key or api_key
curl -i -X GET \
  https://rest.qr-invoice.cloud/v2/examples/invoice-document/mixed-vat \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Invoice Document

Bodyapplication/json
senderobject(Address)required

Bill recipient

sender.​addressLinesArray of strings
recipientobject(Address)

Bill recipient

contactPersonobject(ContactPerson)

The billers contact person

customerNrstring

Customer number

Example: "0001839"
customerReferencestring

If given a customers reference

invoiceDatestring(date)

The invoice date

Example: "2020-11-15"
invoiceDueDatestring(date)

The date this invoice is due / is to be paid. Should be invoice date + termOfPaymentDays

Example: "2020-12-14"
termOfPaymentDaysinteger(int32)

The number of days the invoice is to be paid

Example: 30
invoiceNrstring

The invoice number

Example: "inv-001532"
titlestring

The invoice title

Example: "Online Order 11.11.2020"
prefaceTextstring

Text which is added after the table of invoice positions

Example: "Dear Sir or Madam\n\nWe thank you for your order."
endingTextstring

Closing text which is added after the table of invoice positions

Example: "Please do not hesitate to contact us if you have any questions.\n\nKind regards\n\nJohn Doe"
positionsArray of objects(Position)required
positions[].​positionstring

Position Nr.

Example: "1"
positions[].​descriptionstring

The positions description

Example: "QR Invoice Cloud REST Services - Basic 100 / Monthly fee"
positions[].​quantitynumber(double)

How many units (or fractions) of the current position

Example: 1
positions[].​unitPriceobject(Amount)

An absolute discount value

positions[].​unitstring

An optional unit specification, e.g. pcs / hrs

Example: "pcs"
positions[].​discountAbsoluteobject(Amount)

An absolute discount value

positions[].​discountPercentagenumber

A discount as percentage

Example: 10
positions[].​additionalPropertiesArray of objects(AdditionalProperty)
currencystring

Currency of the invoice which has to match the one specified in QrInvoice

Enum"EUR""CHF"
additionalPropertiesArray of objects(AdditionalProperty)
qrInvoiceobject(QrInvoice)required

QrInvoice

qrInvoice.​creditorInformationobject(CreditorInformation)required
qrInvoice.​creditorInformation.​ibanstring= 21 charactersrequired

IBAN or QR-IBAN of the creditor.
Fixed length: 21 alphanumeric characters, only IBANs with CH or LI country code permitted.

Example: "CH3908704016075473007"
qrInvoice.​creditorInformation.​creditorobject(Creditor)required
qrInvoice.​creditorInformation.​creditor.​addressTypestring= 1 charactersrequired

Address type
The address type is specified using a code. The following codes are defined:
"S" - structured address
"K" - combined address elements (2 lines). DEPRECATED - discontinued and no longer supported after 21.11.2025

Enum"STRUCTURED""COMBINED"
Example: "STRUCTURED"
qrInvoice.​creditorInformation.​creditor.​namestring[ 1 .. 70 ] charactersrequired

The creditor's name or company according to the account name.
Comment: always matches the account holder
Maximum 70 characters permitted
First name (optional, if available) + last name or company name

Example: "Robert Schneider AG"
qrInvoice.​creditorInformation.​creditor.​streetNamestring[ 1 .. 70 ] characters

Street/P.O. box of the creditor
Maximum 70 characters permitted, may not include any house or building number.

Example: "Rue du Lac"
qrInvoice.​creditorInformation.​creditor.​houseNumberstring[ 1 .. 16 ] characters

House number of the creditor
Maximum 16 characters permitted

Example: "1268/2/22"
qrInvoice.​creditorInformation.​creditor.​postalCodestring[ 1 .. 16 ] charactersrequired

Postal code of the creditor
Maximum 16 characters permitted. The postal code is always to be entered without a country code prefix.

Example: "2501"
qrInvoice.​creditorInformation.​creditor.​citystring[ 1 .. 35 ] charactersrequired

City of the creditor
Maximum 35 characters permitted

Example: "Biel"
qrInvoice.​creditorInformation.​creditor.​countrystring= 2 charactersrequired

Country of the creditor
Two-digit country code according to ISO 3166-1

Example: "CH"
qrInvoice.​creditorInformation.​creditor.​addressLine1string[ 1 .. 70 ] charactersDeprecated

Address line 1 including street and building number or P.O. Box
Maximum 70 characters permitted

Example: "Rue du Lac 1268/2/22"
qrInvoice.​creditorInformation.​creditor.​addressLine2string[ 1 .. 70 ] charactersDeprecated

Address line 2 including postal code and town from creditor’s address
Maximum 70 characters permitted
Must be provided for address type "K".

Example: "2501 Biel"
qrInvoice.​ultimateCreditorobject(UltimateCreditor)
qrInvoice.​paymentAmountInformationobject(PaymentAmountInformation)required
qrInvoice.​paymentAmountInformation.​amountnumber[ 0 .. 999999999 ]

The payment amount
The amount element is to be entered without leading zeroes, including decimal separators and two decimal places.

Decimal, maximum 12-digits permitted, including decimal separators. Only decimal points (".") are permitted as decimal separators.

Example: 199.95
qrInvoice.​paymentAmountInformation.​currencystring= 3 charactersrequired

The payment currency, 3-digit alphanumeric currency code according to ISO 4217
Only CHF and EUR are permitted.

Enum"EUR""CHF"
Example: "CHF"
qrInvoice.​ultimateDebtorobject(UltimateDebtor)
qrInvoice.​paymentReferenceobject(PaymentReference)required
qrInvoice.​paymentReference.​referenceTypestring[ 3 .. 4 ] charactersrequired

Reference type (QR, ISO)
The following codes are permitted:
QRR – QR reference
SCOR – Creditor Reference (ISO 11649)
NON – without reference
Maximum four characters, alphanumeric
Must contain the code QRR where a QR-IBAN is used;
where the IBAN is used, either the SCOR or NON code can be entered

Enum"QRR""SCOR""NON"
Example: "SCOR"
qrInvoice.​paymentReference.​referencestring[ 0 .. 27 ] characters

Reference number
Structured payment reference
The reference is either a QR reference or a Creditor Reference (ISO 11649)
Maximum 27 characters, alphanumeric;
must be filled if a QR-IBAN is used.
QR reference: 27 characters, numeric, check sum calculation according to Modulo 10 recursive (27th position of the reference)
Creditor Reference (ISO 11649): max 25 characters, alphanumeric
The element may not be filled for the NON reference type.

REST API
On the REST API automatic creation of both QRR and SCOR reference numbers can be used. To do so, wrap the reference number in curly brackets {42}. In case of the QRR, customerId can be passed as well, separated by a colon, e.g. {123456:42}, whereas 123456 is the customerId

Example: "RF18539007547034"
qrInvoice.​paymentReference.​additionalInformationobject(AdditionalInformation)
qrInvoice.​alternativeSchemesobject(AlternativeSchemes)
Response
application/json
{ "sender": { "addressLines": [] }, "recipient": { "addressLines": [] }, "contactPerson": { "name": "John Doe", "email": "john.doe@example.com", "phoneNr": "+41 00 000 00 00" }, "customerNr": "0001839", "customerReference": "string", "invoiceDate": "2020-11-15", "invoiceDueDate": "2020-12-14", "termOfPaymentDays": 30, "invoiceNr": "inv-001532", "title": "Online Order 11.11.2020", "prefaceText": "Dear Sir or Madam\n\nWe thank you for your order.", "endingText": "Please do not hesitate to contact us if you have any questions.\n\nKind regards\n\nJohn Doe", "positions": [ {} ], "currency": "EUR", "additionalProperties": [ {} ], "qrInvoice": { "creditorInformation": {}, "ultimateCreditor": {}, "paymentAmountInformation": {}, "ultimateDebtor": {}, "paymentReference": {}, "alternativeSchemes": {} } }

Invoice Document - Example with QR Reference

Request

Security
X-API-Key or api_key
curl -i -X GET \
  https://rest.qr-invoice.cloud/v2/examples/invoice-document/gtin \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Invoice Document

Bodyapplication/json
senderobject(Address)required

Bill recipient

sender.​addressLinesArray of strings
recipientobject(Address)

Bill recipient

contactPersonobject(ContactPerson)

The billers contact person

customerNrstring

Customer number

Example: "0001839"
customerReferencestring

If given a customers reference

invoiceDatestring(date)

The invoice date

Example: "2020-11-15"
invoiceDueDatestring(date)

The date this invoice is due / is to be paid. Should be invoice date + termOfPaymentDays

Example: "2020-12-14"
termOfPaymentDaysinteger(int32)

The number of days the invoice is to be paid

Example: 30
invoiceNrstring

The invoice number

Example: "inv-001532"
titlestring

The invoice title

Example: "Online Order 11.11.2020"
prefaceTextstring

Text which is added after the table of invoice positions

Example: "Dear Sir or Madam\n\nWe thank you for your order."
endingTextstring

Closing text which is added after the table of invoice positions

Example: "Please do not hesitate to contact us if you have any questions.\n\nKind regards\n\nJohn Doe"
positionsArray of objects(Position)required
positions[].​positionstring

Position Nr.

Example: "1"
positions[].​descriptionstring

The positions description

Example: "QR Invoice Cloud REST Services - Basic 100 / Monthly fee"
positions[].​quantitynumber(double)

How many units (or fractions) of the current position

Example: 1
positions[].​unitPriceobject(Amount)

An absolute discount value

positions[].​unitstring

An optional unit specification, e.g. pcs / hrs

Example: "pcs"
positions[].​discountAbsoluteobject(Amount)

An absolute discount value

positions[].​discountPercentagenumber

A discount as percentage

Example: 10
positions[].​additionalPropertiesArray of objects(AdditionalProperty)
currencystring

Currency of the invoice which has to match the one specified in QrInvoice

Enum"EUR""CHF"
additionalPropertiesArray of objects(AdditionalProperty)
qrInvoiceobject(QrInvoice)required

QrInvoice

qrInvoice.​creditorInformationobject(CreditorInformation)required
qrInvoice.​creditorInformation.​ibanstring= 21 charactersrequired

IBAN or QR-IBAN of the creditor.
Fixed length: 21 alphanumeric characters, only IBANs with CH or LI country code permitted.

Example: "CH3908704016075473007"
qrInvoice.​creditorInformation.​creditorobject(Creditor)required
qrInvoice.​creditorInformation.​creditor.​addressTypestring= 1 charactersrequired

Address type
The address type is specified using a code. The following codes are defined:
"S" - structured address
"K" - combined address elements (2 lines). DEPRECATED - discontinued and no longer supported after 21.11.2025

Enum"STRUCTURED""COMBINED"
Example: "STRUCTURED"
qrInvoice.​creditorInformation.​creditor.​namestring[ 1 .. 70 ] charactersrequired

The creditor's name or company according to the account name.
Comment: always matches the account holder
Maximum 70 characters permitted
First name (optional, if available) + last name or company name

Example: "Robert Schneider AG"
qrInvoice.​creditorInformation.​creditor.​streetNamestring[ 1 .. 70 ] characters

Street/P.O. box of the creditor
Maximum 70 characters permitted, may not include any house or building number.

Example: "Rue du Lac"
qrInvoice.​creditorInformation.​creditor.​houseNumberstring[ 1 .. 16 ] characters

House number of the creditor
Maximum 16 characters permitted

Example: "1268/2/22"
qrInvoice.​creditorInformation.​creditor.​postalCodestring[ 1 .. 16 ] charactersrequired

Postal code of the creditor
Maximum 16 characters permitted. The postal code is always to be entered without a country code prefix.

Example: "2501"
qrInvoice.​creditorInformation.​creditor.​citystring[ 1 .. 35 ] charactersrequired

City of the creditor
Maximum 35 characters permitted

Example: "Biel"
qrInvoice.​creditorInformation.​creditor.​countrystring= 2 charactersrequired

Country of the creditor
Two-digit country code according to ISO 3166-1

Example: "CH"
qrInvoice.​creditorInformation.​creditor.​addressLine1string[ 1 .. 70 ] charactersDeprecated

Address line 1 including street and building number or P.O. Box
Maximum 70 characters permitted

Example: "Rue du Lac 1268/2/22"
qrInvoice.​creditorInformation.​creditor.​addressLine2string[ 1 .. 70 ] charactersDeprecated

Address line 2 including postal code and town from creditor’s address
Maximum 70 characters permitted
Must be provided for address type "K".

Example: "2501 Biel"
qrInvoice.​ultimateCreditorobject(UltimateCreditor)
qrInvoice.​paymentAmountInformationobject(PaymentAmountInformation)required
qrInvoice.​paymentAmountInformation.​amountnumber[ 0 .. 999999999 ]

The payment amount
The amount element is to be entered without leading zeroes, including decimal separators and two decimal places.

Decimal, maximum 12-digits permitted, including decimal separators. Only decimal points (".") are permitted as decimal separators.

Example: 199.95
qrInvoice.​paymentAmountInformation.​currencystring= 3 charactersrequired

The payment currency, 3-digit alphanumeric currency code according to ISO 4217
Only CHF and EUR are permitted.

Enum"EUR""CHF"
Example: "CHF"
qrInvoice.​ultimateDebtorobject(UltimateDebtor)
qrInvoice.​paymentReferenceobject(PaymentReference)required
qrInvoice.​paymentReference.​referenceTypestring[ 3 .. 4 ] charactersrequired

Reference type (QR, ISO)
The following codes are permitted:
QRR – QR reference
SCOR – Creditor Reference (ISO 11649)
NON – without reference
Maximum four characters, alphanumeric
Must contain the code QRR where a QR-IBAN is used;
where the IBAN is used, either the SCOR or NON code can be entered

Enum"QRR""SCOR""NON"
Example: "SCOR"
qrInvoice.​paymentReference.​referencestring[ 0 .. 27 ] characters

Reference number
Structured payment reference
The reference is either a QR reference or a Creditor Reference (ISO 11649)
Maximum 27 characters, alphanumeric;
must be filled if a QR-IBAN is used.
QR reference: 27 characters, numeric, check sum calculation according to Modulo 10 recursive (27th position of the reference)
Creditor Reference (ISO 11649): max 25 characters, alphanumeric
The element may not be filled for the NON reference type.

REST API
On the REST API automatic creation of both QRR and SCOR reference numbers can be used. To do so, wrap the reference number in curly brackets {42}. In case of the QRR, customerId can be passed as well, separated by a colon, e.g. {123456:42}, whereas 123456 is the customerId

Example: "RF18539007547034"
qrInvoice.​paymentReference.​additionalInformationobject(AdditionalInformation)
qrInvoice.​alternativeSchemesobject(AlternativeSchemes)
Response
application/json
{ "sender": { "addressLines": [] }, "recipient": { "addressLines": [] }, "contactPerson": { "name": "John Doe", "email": "john.doe@example.com", "phoneNr": "+41 00 000 00 00" }, "customerNr": "0001839", "customerReference": "string", "invoiceDate": "2020-11-15", "invoiceDueDate": "2020-12-14", "termOfPaymentDays": 30, "invoiceNr": "inv-001532", "title": "Online Order 11.11.2020", "prefaceText": "Dear Sir or Madam\n\nWe thank you for your order.", "endingText": "Please do not hesitate to contact us if you have any questions.\n\nKind regards\n\nJohn Doe", "positions": [ {} ], "currency": "EUR", "additionalProperties": [ {} ], "qrInvoice": { "creditorInformation": {}, "ultimateCreditor": {}, "paymentAmountInformation": {}, "ultimateDebtor": {}, "paymentReference": {}, "alternativeSchemes": {} } }

Invoice Document - Example with QR Reference

Request

Security
X-API-Key or api_key
curl -i -X GET \
  https://rest.qr-invoice.cloud/v2/examples/invoice-document/discounts \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Invoice Document

Bodyapplication/json
senderobject(Address)required

Bill recipient

sender.​addressLinesArray of strings
recipientobject(Address)

Bill recipient

contactPersonobject(ContactPerson)

The billers contact person

customerNrstring

Customer number

Example: "0001839"
customerReferencestring

If given a customers reference

invoiceDatestring(date)

The invoice date

Example: "2020-11-15"
invoiceDueDatestring(date)

The date this invoice is due / is to be paid. Should be invoice date + termOfPaymentDays

Example: "2020-12-14"
termOfPaymentDaysinteger(int32)

The number of days the invoice is to be paid

Example: 30
invoiceNrstring

The invoice number

Example: "inv-001532"
titlestring

The invoice title

Example: "Online Order 11.11.2020"
prefaceTextstring

Text which is added after the table of invoice positions

Example: "Dear Sir or Madam\n\nWe thank you for your order."
endingTextstring

Closing text which is added after the table of invoice positions

Example: "Please do not hesitate to contact us if you have any questions.\n\nKind regards\n\nJohn Doe"
positionsArray of objects(Position)required
positions[].​positionstring

Position Nr.

Example: "1"
positions[].​descriptionstring

The positions description

Example: "QR Invoice Cloud REST Services - Basic 100 / Monthly fee"
positions[].​quantitynumber(double)

How many units (or fractions) of the current position

Example: 1
positions[].​unitPriceobject(Amount)

An absolute discount value

positions[].​unitstring

An optional unit specification, e.g. pcs / hrs

Example: "pcs"
positions[].​discountAbsoluteobject(Amount)

An absolute discount value

positions[].​discountPercentagenumber

A discount as percentage

Example: 10
positions[].​additionalPropertiesArray of objects(AdditionalProperty)
currencystring

Currency of the invoice which has to match the one specified in QrInvoice

Enum"EUR""CHF"
additionalPropertiesArray of objects(AdditionalProperty)
qrInvoiceobject(QrInvoice)required

QrInvoice

qrInvoice.​creditorInformationobject(CreditorInformation)required
qrInvoice.​creditorInformation.​ibanstring= 21 charactersrequired

IBAN or QR-IBAN of the creditor.
Fixed length: 21 alphanumeric characters, only IBANs with CH or LI country code permitted.

Example: "CH3908704016075473007"
qrInvoice.​creditorInformation.​creditorobject(Creditor)required
qrInvoice.​creditorInformation.​creditor.​addressTypestring= 1 charactersrequired

Address type
The address type is specified using a code. The following codes are defined:
"S" - structured address
"K" - combined address elements (2 lines). DEPRECATED - discontinued and no longer supported after 21.11.2025

Enum"STRUCTURED""COMBINED"
Example: "STRUCTURED"
qrInvoice.​creditorInformation.​creditor.​namestring[ 1 .. 70 ] charactersrequired

The creditor's name or company according to the account name.
Comment: always matches the account holder
Maximum 70 characters permitted
First name (optional, if available) + last name or company name

Example: "Robert Schneider AG"
qrInvoice.​creditorInformation.​creditor.​streetNamestring[ 1 .. 70 ] characters

Street/P.O. box of the creditor
Maximum 70 characters permitted, may not include any house or building number.

Example: "Rue du Lac"
qrInvoice.​creditorInformation.​creditor.​houseNumberstring[ 1 .. 16 ] characters

House number of the creditor
Maximum 16 characters permitted

Example: "1268/2/22"
qrInvoice.​creditorInformation.​creditor.​postalCodestring[ 1 .. 16 ] charactersrequired

Postal code of the creditor
Maximum 16 characters permitted. The postal code is always to be entered without a country code prefix.

Example: "2501"
qrInvoice.​creditorInformation.​creditor.​citystring[ 1 .. 35 ] charactersrequired

City of the creditor
Maximum 35 characters permitted

Example: "Biel"
qrInvoice.​creditorInformation.​creditor.​countrystring= 2 charactersrequired

Country of the creditor
Two-digit country code according to ISO 3166-1

Example: "CH"
qrInvoice.​creditorInformation.​creditor.​addressLine1string[ 1 .. 70 ] charactersDeprecated

Address line 1 including street and building number or P.O. Box
Maximum 70 characters permitted

Example: "Rue du Lac 1268/2/22"
qrInvoice.​creditorInformation.​creditor.​addressLine2string[ 1 .. 70 ] charactersDeprecated

Address line 2 including postal code and town from creditor’s address
Maximum 70 characters permitted
Must be provided for address type "K".

Example: "2501 Biel"
qrInvoice.​ultimateCreditorobject(UltimateCreditor)
qrInvoice.​paymentAmountInformationobject(PaymentAmountInformation)required
qrInvoice.​paymentAmountInformation.​amountnumber[ 0 .. 999999999 ]

The payment amount
The amount element is to be entered without leading zeroes, including decimal separators and two decimal places.

Decimal, maximum 12-digits permitted, including decimal separators. Only decimal points (".") are permitted as decimal separators.

Example: 199.95
qrInvoice.​paymentAmountInformation.​currencystring= 3 charactersrequired

The payment currency, 3-digit alphanumeric currency code according to ISO 4217
Only CHF and EUR are permitted.

Enum"EUR""CHF"
Example: "CHF"
qrInvoice.​ultimateDebtorobject(UltimateDebtor)
qrInvoice.​paymentReferenceobject(PaymentReference)required
qrInvoice.​paymentReference.​referenceTypestring[ 3 .. 4 ] charactersrequired

Reference type (QR, ISO)
The following codes are permitted:
QRR – QR reference
SCOR – Creditor Reference (ISO 11649)
NON – without reference
Maximum four characters, alphanumeric
Must contain the code QRR where a QR-IBAN is used;
where the IBAN is used, either the SCOR or NON code can be entered

Enum"QRR""SCOR""NON"
Example: "SCOR"
qrInvoice.​paymentReference.​referencestring[ 0 .. 27 ] characters

Reference number
Structured payment reference
The reference is either a QR reference or a Creditor Reference (ISO 11649)
Maximum 27 characters, alphanumeric;
must be filled if a QR-IBAN is used.
QR reference: 27 characters, numeric, check sum calculation according to Modulo 10 recursive (27th position of the reference)
Creditor Reference (ISO 11649): max 25 characters, alphanumeric
The element may not be filled for the NON reference type.

REST API
On the REST API automatic creation of both QRR and SCOR reference numbers can be used. To do so, wrap the reference number in curly brackets {42}. In case of the QRR, customerId can be passed as well, separated by a colon, e.g. {123456:42}, whereas 123456 is the customerId

Example: "RF18539007547034"
qrInvoice.​paymentReference.​additionalInformationobject(AdditionalInformation)
qrInvoice.​alternativeSchemesobject(AlternativeSchemes)
Response
application/json
{ "sender": { "addressLines": [] }, "recipient": { "addressLines": [] }, "contactPerson": { "name": "John Doe", "email": "john.doe@example.com", "phoneNr": "+41 00 000 00 00" }, "customerNr": "0001839", "customerReference": "string", "invoiceDate": "2020-11-15", "invoiceDueDate": "2020-12-14", "termOfPaymentDays": 30, "invoiceNr": "inv-001532", "title": "Online Order 11.11.2020", "prefaceText": "Dear Sir or Madam\n\nWe thank you for your order.", "endingText": "Please do not hesitate to contact us if you have any questions.\n\nKind regards\n\nJohn Doe", "positions": [ {} ], "currency": "EUR", "additionalProperties": [ {} ], "qrInvoice": { "creditorInformation": {}, "ultimateCreditor": {}, "paymentAmountInformation": {}, "ultimateDebtor": {}, "paymentReference": {}, "alternativeSchemes": {} } }

10 QR Invoice Documents including Payment Part & Receipt (QR Bill)

Operations

11 Payment Part & Receipt (QR Bill)

Operations

12 Swiss QR Code

Operations

13 Swiss Payments Code

Operations

20 IBAN

Operations

21 QR Reference (QRR)

Operations

22 Creditor Reference (SCOR)

Operations

23 Country Codes

According to ISO 3166-1 alpha-2

Operations

30 Bill Information

Operations

31 Alternative Schemes

Operations

90 PDF

Operations

99 Authentication

Operations

XX Deprecated QR Invoice Operations v1

Version 1 of QR Invoice REST API

Operations