Retrieve the collection of notifications for a given invoice.
You can have the notification message in JSON format or the original XML
by sending the Accept HTTP header to either application/json
or application/xml
Notification collection response
[- {
- "uuid": "string",
- "invoice_uuid": "string",
- "created_at": "string",
- "type": "string",
- "message": {
- "identificativo_sdi": null
}, - "downloaded": true,
- "downloaded_at": "2019-08-24T14:15:22Z",
- "file_name": "string"
}
]
Setup the downloaded flag for a collection of notification.
Note: the downloaded flag is automatically set when a notification is successfully received with the web-hook
The downloaded flag has been set
Invalid input
Resource not found
{- "uuids": [
- "string"
], - "downloaded": true
}
Retrieve a single notification by its uuid.
You can have the notification message in JSON format or the original XML
by sending the Accept HTTP header to either application/json
or application/xml
Notification resource response
Resource not found
{- "uuid": "string",
- "invoice_uuid": "string",
- "created_at": "string",
- "type": "string",
- "message": {
- "identificativo_sdi": null
}, - "downloaded": true,
- "downloaded_at": "2019-08-24T14:15:22Z",
- "file_name": "string"
}