Send Notifications

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
POST /profiles/{profile_id}/notifications
application/json

Body

  • message string Required
  • users array Required

Responses

  • 201 */*

    Created

    Hide response attribute Show response attribute object
    • id number Required

      the created user id

POST /profiles/{profile_id}/notifications
curl \
 --request POST 'https://api.iformbuilder.com/exzact/api/v80/%5Bservername%5D/profiles/{profile_id}/notifications' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"message":"Please sync to update form","users":[]}'
Request examples
{
  "message": "Please sync to update form",
  "users": []
}
Response examples (201)
{
  "id": 42.0
}