Medad Fusion API
  1. Settings
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
      GET
  • Settings
    • Get app configuration for all apps
      GET
    • Update app configuration
      PUT
  • Schemas
    • Schemas
      • AppId
      • Category
      • IntegrationStatus
      • IntegrationField
      • Integration
      • Field
      • AppEvent
      • AppAction
      • MedadApp
      • FieldMapping
      • IntegrationFlow
      • IntegrationFlowCreate
      • IntegrationFlowUpdate
      • LogLevel
      • IntegrationLog
      • ConfiguredApp
      • ConfiguredApps
  1. Settings

Update app configuration

PUT
/settings
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/settings' \
--header 'Content-Type: application/json' \
--data-raw '{
    "property1": {
        "included": true,
        "tenantName": "string",
        "token": "string"
    },
    "property2": {
        "included": true,
        "tenantName": "string",
        "token": "string"
    }
}'
Response Response Example
{
    "property1": {
        "included": true,
        "tenantName": "string",
        "token": "string"
    },
    "property2": {
        "included": true,
        "tenantName": "string",
        "token": "string"
    }
}

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Updated configuration
Body

Modified at 2025-07-28 09:22:10
Previous
Get app configuration for all apps
Next
AppId
Built with