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
Field | Description |
---|---|
event.id | Webhook event unique identifier |
event.type | Webhook event type |
data.customer | Customer information |
data.customer.email | Customer email |
data.customer.name | Customer name |
data.customer_bank_account | Customer bank account information of the account that was used during the verification process |
data.customer_bank_account.brokerage | Brokerage name where customer's stocks are placed |
data.campaign | Information about campaign |
data.campaign.title | Campaign name |
data.campaign.status | Campaign status, can be only running |
data.campaign.slug | Campaign identifier used to access campaign info in public API |
data.app | Information about Application |
data.app.uuid | App unique identifier |
data.app.name | Application 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"
}
}
}