C / New FreshBooks / Time Entries For Employee on Specific Project
Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject queryParams;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
queryParams = CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,"q","Marshall");
CkJsonObject_UpdateString(queryParams,"sort","-started_at");
CkJsonObject_UpdateString(queryParams,"useSearchEndpoint","true");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
resp = CkHttp_QuickRequestParams(http,"GET","https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries/search",queryParams);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
}
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": [
]
}