Medad Fusion API
  1. Schemas
Medad Fusion API
  • Apps
    • List all Medad apps
      GET
  • Integrations
    • List third-party integrations
      GET
  • Flows
    • List all integration flows
      GET
    • Create a new integration flow
      POST
    • Get a specific integration flow
      GET
    • Update an integration flow
      PUT
    • Delete an integration flow
      DELETE
    • Run a test transaction for a flow
      POST
  • Logs
    • List all integration logs
  • Settings
    • Get app configuration for all apps
    • Update app configuration
  • Schemas
    • Schemas
      • AppId
      • Category
      • IntegrationStatus
      • IntegrationField
      • Integration
      • Field
      • AppEvent
      • AppAction
      • MedadApp
      • FieldMapping
      • IntegrationFlow
      • IntegrationFlowCreate
      • IntegrationFlowUpdate
      • LogLevel
      • IntegrationLog
      • ConfiguredApp
      • ConfiguredApps
  1. Schemas

MedadApp

{
    "id": "cmp",
    "name": "string",
    "logo": "string",
    "description": "string",
    "color": "string",
    "events": [
        {
            "id": "string",
            "name": "string",
            "description": "string",
            "fields": [
                {
                    "id": "string",
                    "name": "string",
                    "type": "string",
                    "length": 0,
                    "required": true,
                    "primary": true
                }
            ],
            "entity": "string"
        }
    ],
    "actions": [
        {
            "id": "string",
            "name": "string",
            "description": "string",
            "fields": [
                {
                    "id": "string",
                    "name": "string",
                    "type": "string",
                    "length": 0,
                    "required": true,
                    "primary": true
                }
            ],
            "entity": "string"
        }
    ]
}
Built with