Retrieve all Accounts

Use this endpoint to query accounts with structured filters such as ID, reference, name, or status. Ideal for paginated listings or dashboards where precise field-based querying is required.

get

Query accounts

Query parameters
filterstringOptional
page[size]stringOptional
page[number]stringOptional
sortstringOptional
Responses
200

Response to /api/v2.0/account

application/json
get
/api/v2.0/account
GET /api/v2.0/account HTTP/1.1
Host: 
Accept: */*
200

Response to /api/v2.0/account

{
  "record_count": 1,
  "page_number": 1,
  "page": [
    {
      "attributes": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "created_at": "2025-12-06T05:23:21.705Z",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "text",
      "product_uuid": "123e4567-e89b-12d3-a456-426614174000",
      "product_version": "text",
      "reference": "text",
      "status": "PENDING",
      "updated_at": "2025-12-06T05:23:21.705Z"
    }
  ],
  "continuation": "text",
  "page_count": 1,
  "page_size": 1
}

Last updated