Synctera · Schema

webhook_config

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
custom_header object
password string password for access webhook endpoint
url string url of webhook endpoint
username string username for access webhook endpoint
View JSON Schema on GitHub

JSON Schema

synctera-webhook-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook_config",
  "title": "webhook_config",
  "properties": {
    "custom_header": {
      "$ref": "#/components/schemas/custom_headers"
    },
    "password": {
      "description": "password for access webhook endpoint",
      "type": "string"
    },
    "url": {
      "description": "url of webhook endpoint",
      "type": "string"
    },
    "username": {
      "description": "username for access webhook endpoint",
      "type": "string"
    }
  },
  "type": "object"
}