Webhooks

You can configure your own webhooks that A-CUBE API will call when an event happens. To manage your endpoints you can use the API or the dashboard.

Security

To ensure that the transmission of the information to your public endpoints comes from A-Cube, you can:

Configure a secret token

Configure a secret token in the ApiConfiguration entity that A-Cube will send along with the request to your webhook endpoint.

  • Choose authentication_type = query to ask A-Cube to send the token as a query parameter.
  • Choose authentication_type = header to ask A-Cube to send the token as a header.
  • Configure the token key authentication_key and the token value authentication_token in the ApiConfiguration entity.

Examples

  • In case you chose header as authentication_type, Bearer as authentication_key and mysecret as authentication_token, A-Cube will send the token in the header Authorization: Bearer mysecret.
  • While in case you chose query as authentication_type, token as authentication_key and mysecret as authentication_token, A-Cube will send the token in the query parameter ?token=mysecret.

Verify the signature

Verify the signature that A-Cube sends along with the request to your webhook as explained here.

Events

EventWhen it happens
supplier-invoicean invoice is received from SDI
customer-invoicean invoice is sent successfully to SDI
customer-notificationa notification for a sent invoice comes from SDI
invoice-status-quarantenathe invoice marking changes from waiting to quarantena
invoice-status-invoice-errorthe invoice marking changes from quarantena to invoice-error
legal-storage-missing-vata BusinessRegistryConfiguration is missing the email address required to activate the Legal Storage
legal-storage-receipta PreservedDocument receives the receipt from the legal storage
receipta new receipt is submitted and ready to download
receipt-retryfailed to submit a receipt because the communication with the Tax Authority portal failed and submission will be retried
receipt-errorfailed to submit a receipt for an error signaled by Tax Authority portal
appointeethe process of adding an appointee for smart receipts succeeded
sistemats-receipt-readya sistemats expense receipt is ready
All the messages sent to your endpoint are sent with a POST request. We manage sending the messages to your endpoints with a queue: if your endpoint fails (we don't get a 200 response) then the webhook will retry 15 times every 300 seconds with a back-off rate of 1.25 for a total of about 10 hours.If you want to disable endpoints during an operation you can send header X-DisableEndpoints: true. This header takes effect when sending a new customer invoice or when importing customer or supplier invoices.

Payloads