Chilkat Online Tools

Node.js / New FreshBooks / Time Entries for a Given Day

Back to Collection Items

var os = require('os');
if (os.platform() == 'win32') {  
    if (os.arch() == 'ia32') {
        var chilkat = require('@chilkat/ck-node21-win-ia32');
    } else {
        var chilkat = require('@chilkat/ck-node21-win64'); 
    }
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('@chilkat/ck-node21-arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('@chilkat/ck-node21-linux32');
    } else {
        var chilkat = require('@chilkat/ck-node21-linux64');
    }
} else if (os.platform() == 'darwin') {
    if (os.arch() == 'arm64') {
        var chilkat = require('@chilkat/ck-node21-mac-m1');
    } else {
        var chilkat = require('@chilkat/ck-node21-macosx');
    }
}


function chilkatExample() {

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    var http = new chilkat.Http();
    var success;

    var queryParams = new chilkat.JsonObject();
    queryParams.UpdateInt("page",0);
    queryParams.UpdateString("started_from","2016-08-17T04:00:00Z");
    queryParams.UpdateString("started_to","2019-04-18T03:59:59Z");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.AuthToken = "<access_token>";

    // resp: HttpResponse
    var resp = http.QuickRequestParams("GET","https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries",queryParams);
    if (http.LastMethodSuccess == false) {
        console.log(http.LastErrorText);
        return;
    }

    console.log(resp.StatusCode);
    console.log(resp.BodyStr);


}

chilkatExample();

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
    }
  ]
}