The Quantfolio Webhooks API allows you to receive real-time notifications when specific events occur in the Quantfolio Advisory Platform. Instead of continuously polling for changes, webhooks provide an efficient way to stay updated on important events by sending HTTP POST requests to your specified endpoints.

Key Features

Event Format

Events follow a three-part naming convention: service.object.action

Examples:

Webhook Payload Structure

All webhook payloads follow this structure:

{
  "event": "qap.investor.created",
  "timestamp": "2024-01-15T10:30:00Z",
  "data": {
    // Event-specific data
    "investor_id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "John Doe"
  }
}