Schemas
List Destination Type Schemas
Returns a list of JSON-based input schemas for each available destination type.
get/destination-types
Response
A list of destination type schemas.
Example response
[
{
"type": "webhook",
"label": "Webhook",
"description": "Send event via an HTTP POST request to a URL",
"icon": "<svg />",
"instructions": "Some *markdown*",
"remote_setup_url": "https://dashboard.hookdeck.com/authorize?provider=acme",
"config_fields": [
{
"type": "text",
"label": "URL",
"description": "The URL to send the event to",
"required": true,
"default": "default_value",
"maxlength": 255,
"pattern": "^[a-zA-Z0-9_]+$"
}
],
"credential_fields": [
{
"type": "text",
"label": "URL",
"description": "The URL to send the event to",
"required": true,
"default": "default_value",
"maxlength": 255,
"pattern": "^[a-zA-Z0-9_]+$"
}
]
}
]