C / New FreshBooks / Time Entries for a Given Day
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_UpdateInt(queryParams,"page",0);
CkJsonObject_UpdateString(queryParams,"started_from","2016-08-17T04:00:00Z");
CkJsonObject_UpdateString(queryParams,"started_to","2019-04-18T03:59:59Z");
// 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",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 "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
}
]
}