Import Data
Bring historical or warehouse events into Growise using server track calls and consistent identity keys.
Approach
- Use the Events HTTP API (server) with your project API key
- Include user_id when known; otherwise document anonymous bridging
- Preserve original timestamps for historical imports
- Batch responsibly; prefer idempotent purchase keys
Example
curl -X POST 'https://events.thegrowise.com/track' \
-H 'Content-Type: application/json' \
-d '{
"api_key": "gk_your_key",
"user_id": "usr_99812",
"event": "Purchase Completed",
"properties": { "amount": 99 },
"timestamp": "2025-01-15T10:00:00.000Z"
}'