VBScript / New FreshBooks / Time Entries For Employee on Specific Project
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.UpdateString("q","Marshall")
success = queryParams.UpdateString("sort","-started_at")
success = queryParams.UpdateString("useSearchEndpoint","true")
' 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/search",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 "q=Marshall"
-d "sort=-started_at"
-d "useSearchEndpoint=true"
-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries/search
Postman Collection Item JSON
{
"name": "Time Entries For Employee on Specific Project",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries/search?q=Marshall&sort=-started_at&useSearchEndpoint=true",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"timetracking",
"business",
"{{businessId}}",
"time_entries",
"search"
],
"query": [
{
"key": "date_field",
"value": "date",
"disabled": true
},
{
"key": "page",
"value": "1",
"disabled": true
},
{
"key": "project_id",
"value": "{{projectId}}",
"disabled": true
},
{
"key": "q",
"value": "Marshall"
},
{
"key": "sort",
"value": "-started_at"
},
{
"key": "useSearchEndpoint",
"value": "true"
}
]
},
"description": "Currently you have to search for employee using their employee name and not an ID. "
},
"response": [
]
}