Notifies you when new social media posts are detected from executives (CXO level) of your tracked companies. This radar type helps you monitor leadership communication and strategic announcements.
Content Structure
The content object contains the social media post information:
| Field | Type | Nullable | Description |
|---|---|---|---|
| post_text | string | No | Text content of the social media post |
| post_url | string | No | URL to the original social media post |
| post_channel | string | No | Platform where posted (e.g., Twitter, LinkedIn) |
| post_posted_at | string | No | Best estimated date of posting (YYYY-MM-DD) |
| post_type | string | No | Type of post (e.g., Post, Repost) |
| author | object | No | Information about the executive who posted |
Author Object
| Field | Type | Nullable | Description |
|---|---|---|---|
| first_name | string | No | First name of the executive (may be the full profile name from some platforms) |
| last_name | string | Yes | Last name of the executive (can be null if platform provides only full name) |
| profile_url | string | No | URL to the executive's professional profile |
| title | string | Yes | Current job title (can be null if unavailable on certain platforms) |
| company_name | string | Yes | Name of the company where the executive works |
| company_domain | string | Yes | Domain of the company where the executive works |
| country | string | Yes | Country of the executive (can be null if location unavailable) |
Example
This example includes base webhook fields along with CXO-posts-specific content:
{
"event_id": "41991828-ed31-4bd9-98d2-44b2763f9f35",
"event_type": "radar_finding",
"record_id": "b77af154-c369-4446-b70a-f328880c3a48",
"discovered_at": "2024-03-21T09:45:00Z",
"data": {
"radar_id": "c70813b3-7e87-4ca7-90fd-8c64574d911b",
"radar_type": "company_social_posts_cxo",
"domain": "domain.com",
"next_charge_at": "2024-04-20T11:20:00Z",
"custom_fields": {
"priority": "high",
"account_id": "0011U00000TFV7MQAX"
}
},
"content": {
"post_text": "Thrilled to announce our latest AI breakthrough! Our team has developed a groundbreaking algorithm that will revolutionize how businesses handle data processing. This is just the beginning of our AI journey. #Innovation #AI #TechLeadership",
"post_url": "https://twitter.com/JohnDoeCEO/status/1234567890",
"post_channel": "Twitter",
"post_posted_at": "2024-03-21",
"post_type": "Post",
"author": {
"first_name": "John",
"last_name": "Doe",
"profile_url": "https://www.linkedin.com/in/johndoe/",
"title": "Chief Executive Officer",
"company_name": "Tech Innovations Inc",
"company_domain": "domain.com",
"country": "United States"
}
}
}