Chilkat Online Tools

PowerBuilder / New FreshBooks / Update Credit Note

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_SbRequestBody
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
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.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.

// {
//   "credit_note": {
//     "credit_number": "0000066",
//     "currency_code": "CAD",
//     "create_date": "2020-08-04",
//     "notes": "",
//     "credit_type": "goodwill",
//     "terms": null,
//     "language": "en",
//     "lines": [
//       {
//         "id": "20405-1",
//         "name": "Credit",
//         "description": "Free Voucher",
//         "taxName1": null,
//         "taxAmount1": 0,
//         "taxName2": null,
//         "taxAmount2": 0,
//         "compounded_tax": false,
//         "qty": 1,
//         "unit_cost": {
//           "amount": "50",
//           "code": "CAD"
//         }
//       },
//       {
//         "name": "Credit",
//         "description": "More voucher",
//         "taxName1": null,
//         "taxAmount1": null,
//         "taxName2": null,
//         "taxAmount2": null,
//         "compounded_tax": false,
//         "qty": 1,
//         "unit_cost": {
//           "amount": "100",
//           "code": "CAD"
//         }
//       }
//     ],
//     "clientid": 123
//   }
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_Json.UpdateString("credit_note.credit_number","0000066")
loo_Json.UpdateString("credit_note.currency_code","CAD")
loo_Json.UpdateString("credit_note.create_date","2020-08-04")
loo_Json.UpdateString("credit_note.notes","")
loo_Json.UpdateString("credit_note.credit_type","goodwill")
loo_Json.UpdateNull("credit_note.terms")
loo_Json.UpdateString("credit_note.language","en")
loo_Json.UpdateString("credit_note.lines[0].id","20405-1")
loo_Json.UpdateString("credit_note.lines[0].name","Credit")
loo_Json.UpdateString("credit_note.lines[0].description","Free Voucher")
loo_Json.UpdateNull("credit_note.lines[0].taxName1")
loo_Json.UpdateInt("credit_note.lines[0].taxAmount1",0)
loo_Json.UpdateNull("credit_note.lines[0].taxName2")
loo_Json.UpdateInt("credit_note.lines[0].taxAmount2",0)
loo_Json.UpdateBool("credit_note.lines[0].compounded_tax",0)
loo_Json.UpdateInt("credit_note.lines[0].qty",1)
loo_Json.UpdateString("credit_note.lines[0].unit_cost.amount","50")
loo_Json.UpdateString("credit_note.lines[0].unit_cost.code","CAD")
loo_Json.UpdateString("credit_note.lines[1].name","Credit")
loo_Json.UpdateString("credit_note.lines[1].description","More voucher")
loo_Json.UpdateNull("credit_note.lines[1].taxName1")
loo_Json.UpdateNull("credit_note.lines[1].taxAmount1")
loo_Json.UpdateNull("credit_note.lines[1].taxName2")
loo_Json.UpdateNull("credit_note.lines[1].taxAmount2")
loo_Json.UpdateBool("credit_note.lines[1].compounded_tax",0)
loo_Json.UpdateInt("credit_note.lines[1].qty",1)
loo_Json.UpdateString("credit_note.lines[1].unit_cost.amount","100")
loo_Json.UpdateString("credit_note.lines[1].unit_cost.code","CAD")
loo_Json.UpdateInt("credit_note.clientid",123)

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"

loo_SbRequestBody = create oleobject
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Json.EmitSb(loo_SbRequestBody)

loo_Resp = loo_Http.PTextSb("PUT","https://api.freshbooks.com/accounting/account/{{accountid}}/credit_notes/credit_notes/{{creditnote}}",loo_SbRequestBody,"utf-8","application/json",0,0)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    destroy loo_SbRequestBody
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-d '{
    "credit_note": {
        "credit_number": "0000066",
        "currency_code": "CAD",
        "create_date": "2020-08-04",
        "notes": "",
        "credit_type": "goodwill",
        "terms": null,
        "language": "en",
        "lines": [
            {
                "id": "20405-1",
                "name": "Credit",
                "description": "Free Voucher",
                "taxName1": null,
                "taxAmount1": 0,
                "taxName2": null,
                "taxAmount2": 0,
                "compounded_tax": false,
                "qty": 1,
                "unit_cost": {
                    "amount": "50",
                    "code": "CAD"
                }
            },
            {
                "name": "Credit",
                "description": "More voucher",
                "taxName1": null,
                "taxAmount1": null,
                "taxName2": null,
                "taxAmount2": null,
                "compounded_tax": false,
                "qty": 1,
                "unit_cost": {
                    "amount": "100",
                    "code": "CAD"
                }
            }
        ],
        "clientid": {{clientId}}
    }
}'
https://api.freshbooks.com/accounting/account/{{accountid}}/credit_notes/credit_notes/{{creditnote}}

Postman Collection Item JSON

{
  "name": "Update Credit Note",
  "request": {
    "method": "PUT",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"credit_note\": {\n        \"credit_number\": \"0000066\",\n        \"currency_code\": \"CAD\",\n        \"create_date\": \"2020-08-04\",\n        \"notes\": \"\",\n        \"credit_type\": \"goodwill\",\n        \"terms\": null,\n        \"language\": \"en\",\n        \"lines\": [\n            {\n                \"id\": \"20405-1\",\n                \"name\": \"Credit\",\n                \"description\": \"Free Voucher\",\n                \"taxName1\": null,\n                \"taxAmount1\": 0,\n                \"taxName2\": null,\n                \"taxAmount2\": 0,\n                \"compounded_tax\": false,\n                \"qty\": 1,\n                \"unit_cost\": {\n                    \"amount\": \"50\",\n                    \"code\": \"CAD\"\n                }\n            },\n            {\n                \"name\": \"Credit\",\n                \"description\": \"More voucher\",\n                \"taxName1\": null,\n                \"taxAmount1\": null,\n                \"taxName2\": null,\n                \"taxAmount2\": null,\n                \"compounded_tax\": false,\n                \"qty\": 1,\n                \"unit_cost\": {\n                    \"amount\": \"100\",\n                    \"code\": \"CAD\"\n                }\n            }\n        ],\n        \"clientid\": {{clientId}}\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://api.freshbooks.com/accounting/account/{{accountid}}/credit_notes/credit_notes/{{creditnote}}",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "accounting",
        "account",
        "{{accountid}}",
        "credit_notes",
        "credit_notes",
        "{{creditnote}}"
      ]
    }
  },
  "response": [
  ]
}