Chilkat Online Tools

delphiDll / New FreshBooks / Time Entries Updated Since Precise Time

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
queryParams: HCkJsonObject;
resp: HCkHttpResponse;

begin
// 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,'updated_since','2015-08-01T03:00:00Z');
CkJsonObject_UpdateInt(queryParams,'include_deleted',1);

// 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) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);

Curl Command

curl -G -d "updated_since=2015-08-01T03%3A00%3A00Z"
	-d "include_deleted=1"
	-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries

Postman Collection Item JSON

{
  "name": "Time Entries Updated Since Precise Time",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries?updated_since=2015-08-01T03%3A00%3A00Z&include_deleted=1",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "timetracking",
        "business",
        "{{businessId}}",
        "time_entries"
      ],
      "query": [
        {
          "key": "updated_since",
          "value": "2015-08-01T03%3A00%3A00Z"
        },
        {
          "key": "include_deleted",
          "value": "1"
        }
      ]
    },
    "description": "Time entries that have been updated since a precise time. "
  },
  "response": [
    {
      "name": "Time Entries that have been updated since a precise time",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries?updated_since=2015-08-01T03%3A00%3A00Z&include_deleted=1",
          "protocol": "https",
          "host": [
            "api",
            "freshbooks",
            "com"
          ],
          "path": [
            "timetracking",
            "business",
            "{{businessId}}",
            "time_entries"
          ],
          "query": [
            {
              "key": "updated_since",
              "value": "2015-08-01T03%3A00%3A00Z"
            },
            {
              "key": "include_deleted",
              "value": "1"
            }
          ]
        }
      },
      "_postman_previewlanguage": "Text",
      "header": null,
      "cookie": [
      ],
      "body": null
    }
  ]
}