βοΈSending Custom Events
Sending individual events
curl -X POST https://api.fuul.xyz/api/v1/events \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-send-trigger-event-key" \
-d '{
"name": "custom_conversion",
"user": {
"identifier": "0x1234...",
"identifier_type": "evm_address" // evm_address | solana_address | xrpl_address | sui_address | email | uuid
},
"args": {
"value": {
"amount": "1000000",
"currency": {
"identifier": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"identifier_type": "evm_address",
"chain_identifier": 1
}
}
}
}'Event arguments (args)
args)Key
Type
Description
Value and revenue format
Points and USD values
Currency name
Description
Sending batch events
Last updated