Chilkat Online Tools

PureBasic / New FreshBooks / Add Journal Entry

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; 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"
    ;   }
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

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

    ; Adds the "Authorization: Bearer <access_token>" header.
    CkHttp::setCkAuthToken(http, "<access_token>")
    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")

    resp.i = CkHttp::ckPostJson3(http,"https://my.freshbooks.com/service/api/accounting/account/{{accountId}}/journal_entries/journal_entries","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttpResponse::ckGetBodySb(resp,sbResponseBody)

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    respStatusCode.i = CkHttpResponse::ckStatusCode(resp)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttpResponse::ckHeader(resp)
        Debug "Failed."
        CkHttpResponse::ckDispose(resp)

        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    CkHttpResponse::ckDispose(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

    credit.s
    currency_code.s
    debit.s
    description.s
    detailid.i
    id.i
    name.s
    sub_accountid.i
    user_entered_date.s

    Currency_code.s = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.currency_code")
    Description.s = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.description")
    Entryid.i = CkJsonObject::ckIntOf(jResp,"response.result.journal_entry.entryid")
    Id.i = CkJsonObject::ckIntOf(jResp,"response.result.journal_entry.id")
    Name.s = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.name")
    User_entered_date.s = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.user_entered_date")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jResp,"response.result.journal_entry.details")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        credit = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.details[i].credit")
        currency_code = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.details[i].currency_code")
        debit = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.details[i].debit")
        description = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.details[i].description")
        detailid = CkJsonObject::ckIntOf(jResp,"response.result.journal_entry.details[i].detailid")
        id = CkJsonObject::ckIntOf(jResp,"response.result.journal_entry.details[i].id")
        name = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.details[i].name")
        sub_accountid = CkJsonObject::ckIntOf(jResp,"response.result.journal_entry.details[i].sub_accountid")
        user_entered_date = CkJsonObject::ckStringOf(jResp,"response.result.journal_entry.details[i].user_entered_date")
        i = i + 1
    Wend


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure

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