Gaya Logo

Data Mapping

Webhooks

Test your webhook integration with Gaya. Simply enter your public webhook URL (POST) below and click Export Clipboard to receive a sample payload. This helps you verify your system's ability to process real-time notifications from Gaya. Please note, this is a test environment. For detailed setup instructions, refer to the webhook documentation.

Requests remaining: 10 / 10



Sample Webhook Payload

When you click Export Clipboard, a payload similar to the following will be sent to your webhook URL:

{
    "hook": {
        "id": "9c3fba86-38e5-4655-bf2e-3ef0015c0c44",
        "event": "EXPORT_CLIPBOARD",
        "target": "https://yoururl.com"
    },
    "organization": {
        "user": "[email protected]",
        "name": "John Doe Organization",
        "origination_clipboard": "Progressive",
        "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": "2024-09-26T02:47:16.894Z"
}