Chilkat Online Tools

PowerBuilder / New FreshBooks / Add Journal Entry

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Credit
string ls_Currency_code
string ls_Debit
string ls_Description
integer li_Detailid
integer li_Id
string ls_Name
integer li_Sub_accountid
string ls_User_entered_date
string ls_Currency_code
string ls_Description
integer li_Entryid
integer li_Id
string ls_Name
string ls_User_entered_date
integer i
integer li_Count_i

// 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

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "journal_entry": {
//     "details": [
//       {
//         "sub_accountid": "635974",
//         "debit": "200"
//       },
//       {
//         "sub_accountid": "635976",
//         "credit": "200"
//       }
//     ],
//     "currency_code": "USD",
//     "description": "Here is a basic description of the journal entry made.",
//     "name": "JournalEntry",
//     "user_entered_date": "2019-04-20"
//   }
// }

loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")

loo_Json.UpdateString("journal_entry.details[0].sub_accountid","635974")
loo_Json.UpdateString("journal_entry.details[0].debit","200")
loo_Json.UpdateString("journal_entry.details[1].sub_accountid","635976")
loo_Json.UpdateString("journal_entry.details[1].credit","200")
loo_Json.UpdateString("journal_entry.currency_code","USD")
loo_Json.UpdateString("journal_entry.description","Here is a basic description of the journal entry made.")
loo_Json.UpdateString("journal_entry.name","JournalEntry")
loo_Json.UpdateString("journal_entry.user_entered_date","2019-04-20")

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("Content-Type","application/json")

loo_Resp = loo_Http.PostJson3("https://my.freshbooks.com/service/api/accounting/account/{{accountId}}/journal_entries/journal_entries","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    return
end if

loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_Json
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "response": {
//     "result": {
//       "journal_entry": {
//         "currency_code": "USD",
//         "description": "Here is a basic description of the journal entry made.",
//         "details": [
//           {
//             "credit": null,
//             "currency_code": "USD",
//             "debit": "200",
//             "description": "Here is a basic description of the journal entry made.",
//             "detailid": 1313598,
//             "id": 1313598,
//             "name": "JournalEntry",
//             "sub_accountid": 635974,
//             "user_entered_date": "2019-04-20"
//           },
//           {
//             "credit": "200",
//             "currency_code": "USD",
//             "debit": null,
//             "description": "Here is a basic description of the journal entry made.",
//             "detailid": 1313600,
//             "id": 1313600,
//             "name": "JournalEntry",
//             "sub_accountid": 635976,
//             "user_entered_date": "2019-04-20"
//           }
//         ],
//         "entryid": 629310,
//         "id": 629310,
//         "name": "JournalEntry",
//         "user_entered_date": "2019-04-20"
//       }
//     }
//   }
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

ls_Currency_code = loo_JResp.StringOf("response.result.journal_entry.currency_code")
ls_Description = loo_JResp.StringOf("response.result.journal_entry.description")
li_Entryid = loo_JResp.IntOf("response.result.journal_entry.entryid")
li_Id = loo_JResp.IntOf("response.result.journal_entry.id")
ls_Name = loo_JResp.StringOf("response.result.journal_entry.name")
ls_User_entered_date = loo_JResp.StringOf("response.result.journal_entry.user_entered_date")
i = 0
li_Count_i = loo_JResp.SizeOfArray("response.result.journal_entry.details")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Credit = loo_JResp.StringOf("response.result.journal_entry.details[i].credit")
    ls_Currency_code = loo_JResp.StringOf("response.result.journal_entry.details[i].currency_code")
    ls_Debit = loo_JResp.StringOf("response.result.journal_entry.details[i].debit")
    ls_Description = loo_JResp.StringOf("response.result.journal_entry.details[i].description")
    li_Detailid = loo_JResp.IntOf("response.result.journal_entry.details[i].detailid")
    li_Id = loo_JResp.IntOf("response.result.journal_entry.details[i].id")
    ls_Name = loo_JResp.StringOf("response.result.journal_entry.details[i].name")
    li_Sub_accountid = loo_JResp.IntOf("response.result.journal_entry.details[i].sub_accountid")
    ls_User_entered_date = loo_JResp.StringOf("response.result.journal_entry.details[i].user_entered_date")
    i = i + 1
loop


destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
  "journal_entry": {
    "details": [
      {
        "sub_accountid": "635974",
        "debit": "200"
      },
      {
        "sub_accountid": "635976",
        "credit": "200"
      }
    ],
    "currency_code": "USD",
    "description": "Here is a basic description of the journal entry made.",
    "name": "JournalEntry",
    "user_entered_date": "2019-04-20"
  }
}'
https://my.freshbooks.com/service/api/accounting/account/{{accountId}}/journal_entries/journal_entries

Postman Collection Item JSON

{
  "name": "Add Journal Entry",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"journal_entry\": {\n    \"details\": [\n      {\n        \"sub_accountid\": \"635974\",\n        \"debit\": \"200\"\n      },\n      {\n        \"sub_accountid\": \"635976\",\n        \"credit\": \"200\"\n      }\n    ],\n    \"currency_code\": \"USD\",\n    \"description\": \"Here is a basic description of the journal entry made.\",\n    \"name\": \"JournalEntry\",\n    \"user_entered_date\": \"2019-04-20\"\n  }\n}"
    },
    "url": {
      "raw": "https://my.freshbooks.com/service/api/accounting/account/{{accountId}}/journal_entries/journal_entries",
      "protocol": "https",
      "host": [
        "my",
        "freshbooks",
        "com"
      ],
      "path": [
        "service",
        "api",
        "accounting",
        "account",
        "{{accountId}}",
        "journal_entries",
        "journal_entries"
      ]
    }
  },
  "response": [
    {
      "name": "Add Journal Entry",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"journal_entry\": {\n    \"details\": [\n      {\n        \"sub_accountid\": \"635974\",\n        \"debit\": \"200\"\n      },\n      {\n        \"sub_accountid\": \"635976\",\n        \"credit\": \"200\"\n      }\n    ],\n    \"currency_code\": \"USD\",\n    \"description\": \"Here is a basic description of the journal entry made.\",\n    \"name\": \"JournalEntry\",\n    \"user_entered_date\": \"2019-04-20\"\n  }\n}"
        },
        "url": {
          "raw": "https://my.freshbooks.com/service/api/accounting/account/{{accountId}}/journal_entries/journal_entries",
          "protocol": "https",
          "host": [
            "my",
            "freshbooks",
            "com"
          ],
          "path": [
            "service",
            "api",
            "accounting",
            "account",
            "{{accountId}}",
            "journal_entries",
            "journal_entries"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "nginx"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "X-NewRelic-App-Data",
          "value": "PxQBWV5TCBABVlVSAwEOVlcTGhE1AwE2QgNWEVlbQFtcCxYnRA9QFg1ZWU4DFVdfRgFPCkNFR0gOXkNBDAcPPVUMTBBRXUcIWQpME18AXwcKQkUYFAZLXEUWAgcVHQdKVB8HAlFWUFEFUQtSAQ4HAwBRAU0CVgBORlRVBFEAWVFRXFQDBFdWB10TGlUDChAHbQ=="
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "*"
        },
        {
          "key": "Expires",
          "value": "Tue, 24 Apr 2018 18:46:24 GMT"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Via",
          "value": "1.1 google"
        },
        {
          "key": "Via",
          "value": "1.1 varnish"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        },
        {
          "key": "Accept-Ranges",
          "value": "bytes"
        },
        {
          "key": "Date",
          "value": "Wed, 24 Apr 2019 18:46:24 GMT"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "X-Served-By",
          "value": "cache-mdw17363-MDW"
        },
        {
          "key": "X-Cache",
          "value": "MISS"
        },
        {
          "key": "X-Cache-Hits",
          "value": "0"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "Country",
          "value": "CA"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=31536000; includeSubDomains; preload"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"response\": {\n        \"result\": {\n            \"journal_entry\": {\n                \"currency_code\": \"USD\",\n                \"description\": \"Here is a basic description of the journal entry made.\",\n                \"details\": [\n                    {\n                        \"credit\": null,\n                        \"currency_code\": \"USD\",\n                        \"debit\": \"200\",\n                        \"description\": \"Here is a basic description of the journal entry made.\",\n                        \"detailid\": 1313598,\n                        \"id\": 1313598,\n                        \"name\": \"JournalEntry\",\n                        \"sub_accountid\": 635974,\n                        \"user_entered_date\": \"2019-04-20\"\n                    },\n                    {\n                        \"credit\": \"200\",\n                        \"currency_code\": \"USD\",\n                        \"debit\": null,\n                        \"description\": \"Here is a basic description of the journal entry made.\",\n                        \"detailid\": 1313600,\n                        \"id\": 1313600,\n                        \"name\": \"JournalEntry\",\n                        \"sub_accountid\": 635976,\n                        \"user_entered_date\": \"2019-04-20\"\n                    }\n                ],\n                \"entryid\": 629310,\n                \"id\": 629310,\n                \"name\": \"JournalEntry\",\n                \"user_entered_date\": \"2019-04-20\"\n            }\n        }\n    }\n}"
    }
  ]
}