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.
Events follow a three-part naming convention: service.object.action
Examples:
qap.investor.created - An investor was createdqap.session.completed - A session was completedqap.document.signed - A document was signed*.*.created - Subscribe to all creation events (using wildcards)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"
}
}