Last active
August 29, 2015 14:21
Revisions
-
AndrewHenderson revised this gist
May 14, 2015 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ // I'm proposing we use the CR version at the bottom with the flexibility // to later wrap it in the JSON API envelope. // JSON API // GET http://chromeriver.com/transactionAggregates -
AndrewHenderson renamed this gist
May 14, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
AndrewHenderson revised this gist
May 14, 2015 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ // JSON API // GET http://chromeriver.com/transactionAggregates { "links": { "self": "http://chromeriver.com/transactionAggregates", @@ -15,4 +18,13 @@ "self": "http://chromeriver.com/transactionAggregates?page[offset]=1", } } } // CR API // GET http://chromeriver.com/transactionAggregates { "transactionGroups": [...], "transactionMergeSets": [...], "transactions": [...] } -
AndrewHenderson created this gist
May 14, 2015 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ { "links": { "self": "http://chromeriver.com/transactionAggregates", "next": "http://chromeriver.com/transactionAggregates?page[offset]=2", "last": "http://chromeriver.com/transactionAggregates?page[offset]=10" }, "data": { "type": "transactionAggregates", "attributes": { "transactionGroups": [...], "transactionMergeSets": [...], "transactions": [...] }, "links": { "self": "http://chromeriver.com/transactionAggregates?page[offset]=1", } } }