PowerBuilder / New FreshBooks / Client Account Statement
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")
loo_QueryParams.UpdateString("start_date","2020-01-01")
loo_QueryParams.UpdateString("end_date","2020-12-31")
loo_QueryParams.UpdateString("clientid","{{customerId}}")
loo_QueryParams.UpdateString("currency_code","USD")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Resp = loo_Http.QuickRequestParams("GET","https://api.freshbooks.com/accounting/account/{{accountId}}/reports/accounting/account_statement",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_QueryParams
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_QueryParams
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}}¤cy_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": [
]
}