{"openapi":"3.1.0","info":{"version":"1.0.0","title":"Pipelines API - Email Events","description":"# Email Semantic Events\n\nThis document describes semantic events for email interactions in the Customer.io Pipelines API.\n\nSemantic events are special payloads for our `track` endpoint based on the `event` name. When you send an email event with a specific name (like `Email Delivered` or `Email Opened`), Customer.io and downstream integrations recognize it and handle it appropriately.\n\nWith semantic events, you can set up your events and they'll work with any of our destinations that support email events.\n\n# Server addresses: US and EU\nCustomer.io hosts services in the United States (US) and European Union. Select the appropriate server address for your region.\n\n| Region | Server Address |\n| :-- | :-- |\n| US | https://cdp.customer.io |\n| EU | https://cdp-eu.customer.io |\n\nIf you're in our EU region, you'll need to specify the EU URL when you initialize our server-side libraries.\n\n# Authentication\n\nThe Data Pipelines API uses basic authentication with your API key as the username and a blank password.\n"},"servers":[{"url":"https://cdp.customer.io/v1","description":"The base URL for all Data Pipelines calls in our United States (US) region."},{"url":"https://cdp-eu.customer.io/v1","description":"The base URL for all Data Pipelines calls in our European Union (EU) region."}],"paths":{"/track":{"post":{"operationId":"track_email_events","summary":"Track Email Events","description":"Send email interaction events when people interact with your emails.\n\nThese are semantic events that follow a standard structure for email tracking across different email service providers and analytics platforms.\n\nAvailable email events:\n- `Email Bounced` - Email failed to deliver\n- `Email Delivered` - Email successfully delivered\n- `Email Link Clicked` - Recipient clicked a link in the email\n- `Email Marked as Spam` - Recipient marked email as spam\n- `Email Opened` - Recipient opened the email\n- `Email Unsubscribed` - Recipient unsubscribed from emails\n","security":[{"Basic-Auth":[]}],"parameters":[{"name":"X-Strict-Mode","in":"header","description":"When set to `1`, enables strict validation that returns proper HTTP error codes (400/401) for validation failures. When not set or set to any other value, the API operates in permissive mode, logging errors but returning HTTP 200.\n","required":false,"schema":{"type":"string","enum":["1"]},"example":"1"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/email_bounced_event"},{"$ref":"#/components/schemas/email_delivered_event"},{"$ref":"#/components/schemas/email_link_clicked_event"},{"$ref":"#/components/schemas/email_marked_as_spam_event"},{"$ref":"#/components/schemas/email_opened_event"},{"$ref":"#/components/schemas/email_unsubscribed_event"}]}}}},"responses":{"200":{"$ref":"#/components/responses/200"},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"}}}}},"components":{"schemas":{"email_bounced_event":{"title":"Email Bounced Event","oneOf":[{"title":"Known User","type":"object","required":["userId","event","type","properties"],"properties":{"userId":{"type":"string","description":"The unique identifier for the user.","example":"user_12345"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Bounced"],"description":"The event name. Must be `Email Bounced` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email bounce.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}},{"title":"Anonymous User","type":"object","required":["anonymousId","event","type","properties"],"properties":{"anonymousId":{"type":"string","description":"The anonymous identifier for the user.","example":"anon_abc123xyz"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Bounced"],"description":"The event name. Must be `Email Bounced` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email bounce.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}}]},"email_delivered_event":{"title":"Email Delivered Event","oneOf":[{"title":"Known User","type":"object","required":["userId","event","type","properties"],"properties":{"userId":{"type":"string","description":"The unique identifier for the user.","example":"user_12345"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Delivered"],"description":"The event name. Must be `Email Delivered` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email delivery.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}},{"title":"Anonymous User","type":"object","required":["anonymousId","event","type","properties"],"properties":{"anonymousId":{"type":"string","description":"The anonymous identifier for the user.","example":"anon_abc123xyz"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Delivered"],"description":"The event name. Must be `Email Delivered` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email delivery.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}}]},"email_link_clicked_event":{"title":"Email Link Clicked Event","oneOf":[{"title":"Known User","type":"object","required":["userId","event","type","properties"],"properties":{"userId":{"type":"string","description":"The unique identifier for the user.","example":"user_12345"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Link Clicked"],"description":"The event name. Must be `Email Link Clicked` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email link click.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"},"link_id":{"type":"string","description":"The ID of the link that the user clicked.","example":"link_789"},"link_url":{"type":"string","description":"The URL of the link that the user clicked.","example":"https://example.com/promo"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}},{"title":"Anonymous User","type":"object","required":["anonymousId","event","type","properties"],"properties":{"anonymousId":{"type":"string","description":"The anonymous identifier for the user.","example":"anon_abc123xyz"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Link Clicked"],"description":"The event name. Must be `Email Link Clicked` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email link click.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"},"link_id":{"type":"string","description":"The ID of the link that the user clicked.","example":"link_789"},"link_url":{"type":"string","description":"The URL of the link that the user clicked.","example":"https://example.com/promo"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}}]},"email_marked_as_spam_event":{"title":"Email Marked as Spam Event","oneOf":[{"title":"Known User","type":"object","required":["userId","event","type","properties"],"properties":{"userId":{"type":"string","description":"The unique identifier for the user.","example":"user_12345"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Marked as Spam"],"description":"The event name. Must be `Email Marked as Spam` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the spam report.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}},{"title":"Anonymous User","type":"object","required":["anonymousId","event","type","properties"],"properties":{"anonymousId":{"type":"string","description":"The anonymous identifier for the user.","example":"anon_abc123xyz"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Marked as Spam"],"description":"The event name. Must be `Email Marked as Spam` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the spam report.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}}]},"email_opened_event":{"title":"Email Opened Event","oneOf":[{"title":"Known User","type":"object","required":["userId","event","type","properties"],"properties":{"userId":{"type":"string","description":"The unique identifier for the user.","example":"user_12345"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Opened"],"description":"The event name. Must be `Email Opened` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email open.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}},{"title":"Anonymous User","type":"object","required":["anonymousId","event","type","properties"],"properties":{"anonymousId":{"type":"string","description":"The anonymous identifier for the user.","example":"anon_abc123xyz"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Opened"],"description":"The event name. Must be `Email Opened` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the email open.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}}]},"email_unsubscribed_event":{"title":"Email Unsubscribed Event","oneOf":[{"title":"Known User","type":"object","required":["userId","event","type","properties"],"properties":{"userId":{"type":"string","description":"The unique identifier for the user.","example":"user_12345"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Unsubscribed"],"description":"The event name. Must be `Email Unsubscribed` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the unsubscribe.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"},"list_id":{"type":"string","description":"The ID of the mailing list the user unsubscribed from.","example":"list_123"},"list_name":{"type":"string","description":"The name of the mailing list the user unsubscribed from.","example":"Weekly Newsletter"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}},{"title":"Anonymous User","type":"object","required":["anonymousId","event","type","properties"],"properties":{"anonymousId":{"type":"string","description":"The anonymous identifier for the user.","example":"anon_abc123xyz"},"type":{"type":"string","enum":["track"],"description":"The event type. Must be `track` for event calls."},"event":{"type":"string","enum":["Email Unsubscribed"],"description":"The event name. Must be `Email Unsubscribed` for this semantic event."},"timestamp":{"type":"string","format":"date-time","description":"The ISO-8601 timestamp when the event occurred. If not provided, Customer.io records the time when the request is received.","example":"2024-01-15T10:30:00.000Z"},"properties":{"type":"object","required":["email_id"],"description":"Event properties that describe the unsubscribe.","properties":{"email_id":{"type":"string","description":"The ID of the email/delivery.","example":"msg_abc123"},"email_subject":{"type":"string","description":"The email's subject line.","example":"Your weekly newsletter"},"campaign_id":{"type":"string","description":"The ID of the campaign the email belongs to.","example":"camp_456"},"campaign_name":{"type":"string","description":"The campaign's friendly name.","example":"Weekly Newsletter Campaign"},"list_id":{"type":"string","description":"The ID of the mailing list the user unsubscribed from.","example":"list_123"},"list_name":{"type":"string","description":"The name of the mailing list the user unsubscribed from.","example":"Weekly Newsletter"}},"additionalProperties":{"description":"Additional custom properties for the event."}},"context":{"type":"object","description":"Contextual information about the event. These fields are in addition to any captured automatically by your source library.","properties":{"traits":{"type":"object","description":"Traits you want to capture as context for the event.","properties":{"email":{"type":"string","description":"The recipient's email address.","example":"user@example.com"},"ip":{"type":"string","description":"The IP address of the user who interacted with the email.","example":"192.168.1.1"},"user_agent":{"type":"string","description":"The user agent of the user who interacted with the email.","example":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"}}}},"additionalProperties":true},"integrations":{"$ref":"#/components/schemas/integrations"}}}]},"context":{"x-scalar-ignore":true,"title":"Context","type":"object","description":"Additional context about the event, such as device information, IP address, user agent, etc. Most of our libraries collect this automatically.","additionalProperties":true},"integrations":{"x-scalar-ignore":true,"title":"Integrations","type":"object","description":"Control which integrations receive this event. By default, all enabled integrations receive events.","additionalProperties":true,"example":{"All":false,"Mixpanel":true,"Segment":true}}},"securitySchemes":{"Basic-Auth":{"type":"http","scheme":"basic","description":"The Data Pipelines API uses a basic authentication scheme with your API key. Use the API Key as the username and leave the password blank.\n"}},"responses":{"200":{"description":"A successful request returns an empty object response.","content":{"application/json":{"schema":{"type":"object"}}}},"400":{"description":"Invalid or malformed request.","content":{"application/json":{"schema":{"type":"object","properties":{"meta":{"type":"object","properties":{"errors":{"type":"array","description":"An array of errors.","items":{"type":"string","description":"Error descriptions."}}}}}}}}},"401":{"description":"Unauthorized request. Make sure that you provided the right credentials."}}}}