VBScript / New FreshBooks / Time Entries for a Given Day
Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set queryParams = CreateObject("Chilkat.JsonObject")
success = queryParams.UpdateInt("page",0)
success = queryParams.UpdateString("started_from","2016-08-17T04:00:00Z")
success = queryParams.UpdateString("started_to","2019-04-18T03:59:59Z")
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
' resp is a Chilkat.HttpResponse
Set resp = http.QuickRequestParams("GET","https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries",queryParams)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
Curl Command
curl -G -d "page=0"
-d "started_from=2016-08-17T04%3A00%3A00Z"
-d "started_to=2019-04-18T03%3A59%3A59Z"
-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries
Postman Collection Item JSON
{
"name": "Time Entries for a Given Day ",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries?page=0&started_from=2016-08-17T04%3A00%3A00Z&started_to=2019-04-18T03%3A59%3A59Z",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"timetracking",
"business",
"{{businessId}}",
"time_entries"
],
"query": [
{
"key": "page",
"value": "0"
},
{
"key": "started_from",
"value": "2016-08-17T04%3A00%3A00Z"
},
{
"key": "started_to",
"value": "2019-04-18T03%3A59%3A59Z"
}
]
}
},
"response": [
{
"name": "List time entries for a given day",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries?page=0&started_from=2016-08-17T04%3A00%3A00Z&started_to=2019-04-18T03%3A59%3A59Z",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"timetracking",
"business",
"{{businessId}}",
"time_entries"
],
"query": [
{
"key": "page",
"value": "0"
},
{
"key": "started_from",
"value": "2016-08-17T04%3A00%3A00Z"
},
{
"key": "started_to",
"value": "2019-04-18T03%3A59%3A59Z"
}
]
}
},
"_postman_previewlanguage": "Text",
"header": null,
"cookie": [
],
"body": null
}
]
}