Skip to main content
GET
/
api
/
invoices
/
{invoice_uid}
/
action_logs
Get AP invoice action logs
curl --request GET \
  --url https://dev.exante.app/api/invoices/{invoice_uid}/action_logs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "invoice": {},
    "invoice_action_logs": [
      {}
    ],
    "responsible_users": [
      {
        "id": 123,
        "fullname": "<string>",
        "avatar": "<string>",
        "complete": true
      }
    ]
  }
}
Returns the full action log history for an AP invoice, the enriched invoice object, and the users currently responsible for the next action.

Response data

  • invoice — the invoice with computed approved_by, registered_by, approval_date, and registration_date fields.
  • invoice_action_logs — ordered list of every action log entry for the invoice.
  • responsible_users — users assigned to the current pending action, each with a complete flag indicating whether they have finished their step.

Authorizations

Authorization
string
header
required

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

Path Parameters

invoice_uid
string<uuid>
required

Invoice UID

Response

Action logs fetched

success
boolean
message
string
data
object