Ampersand · Schema
Destination
Destination schema from Ampersand API
Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The destination ID. |
| name | string | User-defined name for the destination |
| type | string | The type of the destination |
| metadata | object | |
| createTime | string | The time the destination was created. |
| updateTime | string | The time the destination was updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-destination-schema.json",
"title": "Destination",
"description": "Destination schema from Ampersand API",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The destination ID."
},
"name": {
"type": "string",
"description": "User-defined name for the destination",
"example": "leadConvertedWebhook"
},
"type": {
"type": "string",
"description": "The type of the destination",
"example": "webhook"
},
"metadata": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Webhook URL",
"example": "https://webhooks.mailmonkey.com/salesforce-lead-converted"
},
"headers": {
"$ref": "#/components/schemas/WebhookHeaders"
},
"streamName": {
"type": "string",
"description": "The name of the Kinesis stream",
"example": "my-data-stream"
},
"region": {
"type": "string",
"description": "The AWS region for the destination",
"example": "us-east-1"
},
"partitionKeyTemplate": {
"type": "string",
"description": "Template for generating partition keys",
"example": "{{.integration_id}}"
}
}
},
"createTime": {
"type": "string",
"description": "The time the destination was created.",
"format": "date-time"
},
"updateTime": {
"type": "string",
"description": "The time the destination was updated.",
"format": "date-time"
}
},
"required": [
"id",
"name",
"type",
"metadata",
"createTime"
]
}