Skip to main content
GET
/
api
/
documents
/
{document_id}
/
history
Get Document History
curl --request GET \
  --url https://api.e-invoice.be/api/documents/{document_id}/history \
  --header 'Authorization: Bearer <token>'
[
  {
    "action": "<string>",
    "success": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "error_message": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

document_id
string
required

Response

Successful Response

action
string
required
success
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
error_message
string | null