Get Dataflow count

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/dataflow-automation/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Dataflow Automation MCP server": {
    "url": "https://apidocs.zerionsoftware.com/doc/dataflow-automation/mcp"
  }
}

Close
GET /dataflows/count/{matchingText}

Get Number of dataflows by the matchingText.

Path parameters

  • matchingText string Required

    string that matches dataflow name, Id, description, or the owner's name. Leave it empty for no matching text.

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • count number
GET /dataflows/count/{matchingText}
curl \
 --request GET 'https://dataflownode.zerionsoftware.com/zcrypt/v1.0/dataflows/count/{matchingText}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "count": 3
}