Created
February 28, 2020 22:39
-
-
Save flurrydev/bd1c5145fdfe0e6b7dcd92ffe9aedeed to your computer and use it in GitHub Desktop.
YDN RDD API Request Example
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 -X POST "https://rawdata.flurry.com/pulse/v1/rawData" | |
-H 'accept: application/vnd.api+json' | |
-H 'authorization: Bearer ~~YOUR TOKEN~~' -H 'cache-control: no-cache' -H 'content-type: application/vnd.api+json' | |
-d '{"data": | |
{"type": "rawData", "attributes": | |
{"startTime": “1511164800000", | |
"endTime": “1511251199000", | |
"outputFormat": “JSON", | |
"apiKey": "AAAA1111BBBB2222CCCC" | |
} | |
} | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment