Notifications
Push Notification - Notifies the tenant of the EHF status of documents sent and received on behalf of their customers
Notifications overview
Push Notifications (Webhooks)
openapi: 3.0.3
info:
title: Zirius Accesspoint Webhook Notification
version: 1.0.0
description: Webhook to receive status updates for sent and received EHFs.
paths:
/webhook/notification:
post:
summary: Receive invoice status notification
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SendInvoiceNotification'
responses:
'200':
description: Notification received successfully
components:
schemas:
SendInvoiceNotification:
type: object
required:
- eventType
- transmissionId
- jobId
- status
- fileReference
properties:
eventType:
type: string
example: SEND_EHF
transmissionId:
type: string
example: 7ec22637303b11eda7239a0197b30fe2
jobId:
type: string
example: 8ab25635303b11340fe2
status:
type: string
example: SENT
fileReference:
type: string
example: file-reference-key
Notification Status Types
Code
Description
Last updated