Keboola · Example Payload

Notifications Api Postnotification Request

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Notifications Api Postnotification Request is an example object payload from Keboola, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

directProjectEmaildirectProjectEmailWithFlowAndJobdirectProjectWebhook

Example Payload

Raw ↑
{
  "directProjectEmail": {
    "value": {
      "type": "direct-project-email",
      "recipient": {
        "channel": "email",
        "address": "user@example.com"
      },
      "data": {
        "project": {
          "id": "1234",
          "name": "My Project"
        },
        "title": "Important Notification",
        "message": "This is an important notification about your project."
      }
    }
  },
  "directProjectEmailWithFlowAndJob": {
    "value": {
      "type": "direct-project-email",
      "recipient": {
        "channel": "email",
        "address": "user@example.com"
      },
      "data": {
        "project": {
          "id": "1234",
          "name": "My Project"
        },
        "flow": {
          "id": "5678",
          "name": "My Flow",
          "url": "https://connection.keboola.com/admin/projects/1234/flows-v2/5678"
        },
        "job": {
          "id": "9012",
          "url": "https://connection.keboola.com/admin/projects/1234/queue/9012"
        },
        "title": "Important Notification",
        "message": "This is an important notification about your project."
      }
    }
  },
  "directProjectWebhook": {
    "value": {
      "type": "direct-project-webhook",
      "recipient": {
        "channel": "webhook",
        "url": "https://webhook.example.com/notifications"
      },
      "data": {
        "project": {
          "id": "1234",
          "name": "My Project"
        },
        "title": "Important Notification",
        "message": "This is an important notification about your project."
      }
    }
  }
}