Retrieve an Async Transaction Log Daily Summary

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.zerionsoftware.com/doc/iformbuilder-v80/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "iFormBuilder V80 MCP server": {
    "url": "https://apidocs.zerionsoftware.com/doc/iformbuilder-v80/mcp"
  }
}

Close
GET /async_transaction_log/daily_summary

Returns API usage grouped by endpoint for a given day, ordered by request count descending. Each result shows how many times a particular request_uri was called. Useful for self-serve API usage reporting without requiring support.

Query parameters

  • fields string

    filter and/or select response fields. Use fields=<fieldname>(="<value>") to filter by any available field. Use ~ instead of = for LIKE/partial matching: fields=request_uri(~"%pattern%"). Multiple filters can be combined with a comma. Example: fields=request_time(="2026-04-22"),request_uri(~"%/pages/%"). Filterable fields: request_time (date or datetime — time portion is ignored), request_uri, request_function, username. If request_time is omitted, defaults to today (UTC).

  • limit number

    maximum number of results to return

  • offset number

    skip that many records before beginning to return

Responses

  • 200 application/json

    OK

GET /async_transaction_log/daily_summary
curl \
 --request GET 'https://api.iformbuilder.com/exzact/api/v80/%5Bservername%5D/async_transaction_log/daily_summary' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "request_count": 69,
    "request_uri": "/exzact/_triggerFormPostAction.php?t=abc123&PAGE_ID=290829043"
  },
  {
    "request_count": 7,
    "request_uri": "/exzact/api/v80/loadapp/profiles/363674/pages/290856497/elements/283233000"
  }
]