Chilkat Online Tools

SQL Server / New FreshBooks / Time Entries For Employee on Specific Project

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    DECLARE @queryParams int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @queryParams OUT

    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'q', 'Marshall'
    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'sort', '-started_at'
    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'useSearchEndpoint', 'true'

    -- Adds the "Authorization: Bearer <access_token>" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries/search', @queryParams
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @queryParams
        RETURN
      END

    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    PRINT @iTmp0
    EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
    PRINT @sTmp0
    EXEC @hr = sp_OADestroy @resp


    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @queryParams


END
GO

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": [
  ]
}