#Overzicht
Stuur een enkele signaalgebeurtenis naar Bigmind. De gebeurtenis wordt gevalideerd, gekoppeld aan het bijbehorende CRM-record en in de wachtrij gezet voor AI-verwerking.
#Endpoint
POST /v1/events
#Authenticatie
Voeg uw API-sleutel toe aan de Authorization header:
Authorization: Bearer sk_your_api_key_here
#Voorbeeld verzoek
curl -X POST https://api.bigmind.ai/v1/events \
-H "Authorization: Bearer sk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"signal": "visited-documentation-page",
"version": "latest",
"identity": {
"type": "account",
"id": "001ABC000000123"
},
"data": {
"page": "/docs/quickstart",
"duration_seconds": 120
}
}'
