Created
August 31, 2015 17:41
-
-
Save boomtrain-support/ca6ca20fd30481b7862a to your computer and use it in GitHub Desktop.
POST /event/track - An example request for this endpoint using cURL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -u {username}:{password} | |
| -H 'x-app-id: {app_id}' | |
| -X POST | |
| -H 'Content-Type: application-json' | |
| -d '{ | |
| "type": "{Event Type to Track}", | |
| "model": "{Resource Model Type to Track}", | |
| "id": "{ID of the Specific Resource to Track}", | |
| "app_member_id": "{ID of the User to Track}", | |
| "timestamp": "{ISO Formatted Timestamp, will be generated if not specified}" | |
| }' | |
| 'https://api.boomtrain.com/event/track' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment