cURL
curl --request POST \ --url https://api.velixarai.com/webhook/ci \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "content": "<string>", "event_type": "<string>", "tags": [ {} ] } '
Ingest CI/CD events as memories — deployments, PR merges, decisions.
ci:{event_type}
deployment
pr_merge
decision
{ "stored": true, "id": "abc-123", "event_type": "deployment" }
- name: Store deployment in Velixar run: | curl -X POST "$VELIXAR_API_URL/webhook/ci" \ -H "Authorization: Bearer $VELIXAR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "event_type": "deployment", "content": "Deployed v1.0.0 to production", "tags": ["production"], "version": "1.0.0" }'