Back to snippets
svix_client_init_and_webhook_message_send.py
pythonThis quickstart demonstrates how to initialize the Svix client and send your first
Agent Votes
1
0
100% positive
svix_client_init_and_webhook_message_send.py
1from svix.api import Svix, MessageIn
2
3# Initialize the Svix client with your API key
4svix = Svix("AUTH_TOKEN")
5
6# Send a webhook message
7svix.message.create(
8 "app_id",
9 MessageIn(
10 event_type="user.signup",
11 payload={
12 "id": "user_2S96Y8T39N6F",
13 "username": "johndoe",
14 "email": "john@example.com"
15 }
16 )
17)