Gaya Logo

Data Mapping

Webhooks

Schedule a Demo

Test your webhook integration with Gaya. Enter your public webhook URL (POST) below and click Test Webhook to receive a sample payload for the clipboard.record.created event. This helps you verify that your system can handle real-time insert notifications from Gaya. Please note, this is a test environment. For detailed setup instructions, refer to the webhook documentation.

Requests remaining: 5 / 5



Sample Webhook Payload

When you click Test Webhook, a payload similar to the following will be sent to your webhook URL for the clipboard.record.created event:

{
    "business_line": "Personal Line Insurance",
    "subscription": {
        "id": "9c3fba86-38e5-4655-bf2e-3ef0015c0c44",
        "event": "clipboard.record.created"
    },
    "organization": {
        "user": "[email protected]",
        "name": "John Doe Organization",
        "office": "Austin HQ"
    },
    "entities": [
        {
            "entity": "customer",
            "index": 1,
            "fields": [
                {
                    "name": "email",
                    "value": "[email protected]"
                },
                {
                    "name": "first_name",
                    "value": "John"
                },
                {
                    "name": "last_name",
                    "value": "Doe"
                }
            ]
        },
        {
            "entity": "car",
            "index": 1,
            "fields": [
                {
                    "name": "make",
                    "value": "Toyota"
                },
                {
                    "name": "model",
                    "value": "Corolla"
                }
            ]
        },
        {
            "entity": "car",
            "index": 2,
            "fields": [
                {
                    "name": "make",
                    "value": "Honda"
                },
                {
                    "name": "model",
                    "value": "Civic"
                }
            ]
        }
    ],
    "created_at": "2025-06-25T17:45:38.728Z"
}