Chilkat Online Tools

Swift3 / New FreshBooks / Client Account Statement

Back to Collection Items

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

    let http = CkoHttp()!
    var success: Bool

    let queryParams = CkoJsonObject()!
    queryParams.update("start_date", value: "2020-01-01")
    queryParams.update("end_date", value: "2020-12-31")
    queryParams.update("clientid", value: "{{customerId}}")
    queryParams.update("currency_code", value: "USD")

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

    var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://api.freshbooks.com/accounting/account/{{accountId}}/reports/accounting/account_statement", json: queryParams)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -G -d "start_date=2020-01-01"
	-d "end_date=2020-12-31"
	-d "clientid=%7B%7BcustomerId%7D%7D"
	-d "currency_code=USD"
	-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/accounting/account/{{accountId}}/reports/accounting/account_statement

Postman Collection Item JSON

{
  "name": "Client Account Statement",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let jsonData = JSON.parse(responseBody);",
          "pm.environment.set(\"downloadToken\", jsonData.response.result.account_statement.download_token);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.freshbooks.com/accounting/account/{{accountId}}/reports/accounting/account_statement?start_date=2020-01-01&end_date=2020-12-31&clientid={{customerId}}&currency_code=USD",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "accounting",
        "account",
        "{{accountId}}",
        "reports",
        "accounting",
        "account_statement"
      ],
      "query": [
        {
          "key": "start_date",
          "value": "2020-01-01"
        },
        {
          "key": "end_date",
          "value": "2020-12-31"
        },
        {
          "key": "clientid",
          "value": "{{customerId}}"
        },
        {
          "key": "currency_code",
          "value": "USD"
        }
      ]
    }
  },
  "response": [
  ]
}