Skip to main content
GET
/
invoices
/
{id}
/
history
Invoice change history
curl --request GET \
  --url https://api.contazen.ro/v1/invoices/{id}/history \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "object": "list",
    "data": [
      {
        "id": "<string>",
        "type": "<string>",
        "type_label": "<string>",
        "message": "<string>",
        "icon": "<string>",
        "by": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "pagination": {
      "page": 123,
      "per_page": 123,
      "total": 123,
      "total_pages": 123
    }
  },
  "meta": {
    "version": "v1",
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "response_time": "23.45ms"
  }
}

Authorizations

Authorization
string
header
required

Use your API key (sk_live_xxx or sk_test_xxx)

Path Parameters

id
string
required

Invoice ID (czUid).

Query Parameters

page
integer
default:1
Required range: x >= 1
per_page
integer
default:50
Required range: 1 <= x <= 100

Response

History entries

success
boolean
data
object
meta
object