Skip to content
On this page

Campaign Customer Verified Event

Event ID

txt
campaigns.customer.verified

Event Description

The event triggers every time a new customer verifies his account using the Roundtable platform.

Fields

FieldDescription
event.idWebhook event unique identifier
event.typeWebhook event type
data.customerCustomer information
data.customer.emailCustomer email
data.customer.nameCustomer name
data.customer_bank_accountCustomer bank account information of the account that was used during the verification process
data.customer_bank_account.brokerageBrokerage name where customer's stocks are placed
data.campaignInformation about campaign
data.campaign.titleCampaign name
data.campaign.statusCampaign status, can be only running
data.campaign.slugCampaign identifier used to access campaign info in public API
data.appInformation about Application
data.app.uuidApp unique identifier
data.app.nameApplication name

Example Payload

json
{
  "event": {
    "id": "e7fe07b8-ae6d-440d-a3db-b20f4a267ce6",
    "type": "campaigns.customer.verified"
  },
  "data": {
    "customer": {
      "email": "customer@roundtable.xyz",
      "name": "John Doe"
    },
    "customer_bank_account": {
      "brokerage": "robinhood"
    },
    "campaign": {
      "title": "Campaign title",
      "status": "running",
      "slug": "campaign-slug"
    },
    "app": {
      "uuid": "81721046-5c8f-4b44-aeb8-dce0adb5c4e3",
      "name": "App Name"
    }
  }
}