Idempotency-Key header to the request.
curl
GET and DELETE requests have no effect and should be avoided, as these requests are idempotent by definition.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Idempotency-Key header to the request.
curl 'https://api.ravenapp.dev/v1/apps/{{APP_ID}}/events/send' \
-H 'Authorization: AuthKey {{API_KEY}}' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: {{IDEMPOTENCY_KEY}}' \
-d '{
"event": "test",
"user" : {
"mobile" : "+919876543210"
},
"data" : {
"customer_name" : "Doodle",
"client_name" : "John",
"order_amount" : "123"
}
}'
GET and DELETE requests have no effect and should be avoided, as these requests are idempotent by definition.