Returns a status message of the eBill system managed by SIX
Dibito REST API (1.1)
The Dibito REST API provides services to submit, verify and deliver eBills. The API is designed to be used by biller integrations. 
 Please refer to the API tutorial for your first eBill submission.
API Key
This API requires an API key to be passed in the `X-API-Key` header.Generate your API key in the Dibito application under "Dibito -> API Keys".
Top level overview
- Create bills by posting either a QR-Invoice as PDF to the /v1/business-cases` endpoint or a fully populated JSON object to one of the business case type endpoints.
 - If the request succeeds, it passed validation and can be delivered to the eBill recipients.
 - Use the webhook endpoints to be notified about changes to your recipient subscriptions or business case statuses.
 
Referencing existing bills
If you pass one of the reference parameters or fill in the referenced bills section in your business case, the submitted eBill will:- In case of a reminder: Add a reminder to the eBill portal of the reciepient for the referenced bill.
 - In case of a donation inquiry: Will do nothing. Donation inquiries cannot be referenced.
 - In any other case: Replace the referenced bill with the new one in the eBill portal of the recipient. (Hint: Use advices to effectively cancel delivered eBills.)
 
Product Website
https://www.dibito.chFurther Informations
Consult our documentation for further informations about creating and handling eBills.Download OpenAPI description
Overview
URL
Codeblock GmbH
Languages
Servers
Generated server url
https://app.dibito.ch/
- Generated server url
https://app.dibito.ch/api/v1/healthcheck/ebill
 
- curl
 - JavaScript
 - Node.js
 - Python
 - Java
 - C#
 - PHP
 - Go
 - Ruby
 - R
 - Payload
 
curl -i -X GET \
  https://app.dibito.ch/api/v1/healthcheck/ebill \
  -H 'X-API-Key: YOUR_API_KEY_HERE'Healthcheck successful
response message from health check
 Example: "The healthcheck GET request was successfully received and processed"
according to RFC3339, section 5.6 in ISO 8601 with timezone and milliseconds
 Example: "2018-10-03T16:03:09.101+02:00"
the version of the eBill infrastructure
 Example: "1.4.3.0-desire-20180927091004161-71-5e3ca91"
Response
application/json
{ "message": "The healthcheck GET request was successfully received and processed", "requestDateTime": "2018-10-03T16:03:09.101+02:00", "receivedHeaders": [ { … } ], "environmentStage": "XE", "applicationVersion": "1.4.3.0-desire-20180927091004161-71-5e3ca91", "apiVersion": "1.0.23", "maintenanceWindows": [ { … } ] }