Chilkat Online Tools

Swift3 / New FreshBooks / Create Credit Note

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

    // 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": "0000064",
    //     "currency_code": "CAD",
    //     "create_date": "2020-07-31",
    //     "notes": "Free $150 voucher",
    //     "credit_type": "goodwill",
    //     "terms": "Will be applied to future invoice",
    //     "language": "en",
    //     "lines": [
    //       {
    //         "name": "Credit",
    //         "description": "Goodwill Credit",
    //         "taxName1": null,
    //         "taxAmount1": null,
    //         "taxName2": null,
    //         "taxAmount2": null,
    //         "compounded_tax": false,
    //         "qty": 1,
    //         "unit_cost": {
    //           "amount": "150",
    //           "code": "CAD"
    //         },
    //         "credit_note": null
    //       }
    //     ],
    //     "clientid": 123
    //   }
    // }

    let json = CkoJsonObject()!
    json.update("credit_note.credit_number", value: "0000064")
    json.update("credit_note.currency_code", value: "CAD")
    json.update("credit_note.create_date", value: "2020-07-31")
    json.update("credit_note.notes", value: "Free $150 voucher")
    json.update("credit_note.credit_type", value: "goodwill")
    json.update("credit_note.terms", value: "Will be applied to future invoice")
    json.update("credit_note.language", value: "en")
    json.update("credit_note.lines[0].name", value: "Credit")
    json.update("credit_note.lines[0].description", value: "Goodwill Credit")
    json.updateNull("credit_note.lines[0].taxName1")
    json.updateNull("credit_note.lines[0].taxAmount1")
    json.updateNull("credit_note.lines[0].taxName2")
    json.updateNull("credit_note.lines[0].taxAmount2")
    json.updateBool("credit_note.lines[0].compounded_tax", value: false)
    json.updateInt("credit_note.lines[0].qty", value: 1)
    json.update("credit_note.lines[0].unit_cost.amount", value: "150")
    json.update("credit_note.lines[0].unit_cost.code", value: "CAD")
    json.updateNull("credit_note.lines[0].credit_note")
    json.updateInt("credit_note.clientid", value: 123)

    var resp: CkoHttpResponse? = http.postJson3("https://api.freshbooks.com/accounting/account/{{accountid}}/credit_notes/credit_notes", contentType: "application/json", json: json)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

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

}

Curl Command

curl -X POST
	-d '{
    "credit_note": {
        "credit_number": "0000064",
        "currency_code": "CAD",
        "create_date": "2020-07-31",
        "notes": "Free $150 voucher",
        "credit_type": "goodwill",
        "terms": "Will be applied to future invoice",
        "language": "en",
        "lines": [
            {
                "name": "Credit",
                "description": "Goodwill Credit",
                "taxName1": null,
                "taxAmount1": null,
                "taxName2": null,
                "taxAmount2": null,
                "compounded_tax": false,
                "qty": 1,
                "unit_cost": {
                    "amount": "150",
                    "code": "CAD"
                },
                "credit_note": null
            }
        ],
        "clientid": {{clientid}}
    }
}'
https://api.freshbooks.com/accounting/account/{{accountid}}/credit_notes/credit_notes

Postman Collection Item JSON

{
  "name": "Create Credit Note",
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"credit_note\": {\n        \"credit_number\": \"0000064\",\n        \"currency_code\": \"CAD\",\n        \"create_date\": \"2020-07-31\",\n        \"notes\": \"Free $150 voucher\",\n        \"credit_type\": \"goodwill\",\n        \"terms\": \"Will be applied to future invoice\",\n        \"language\": \"en\",\n        \"lines\": [\n            {\n                \"name\": \"Credit\",\n                \"description\": \"Goodwill Credit\",\n                \"taxName1\": null,\n                \"taxAmount1\": null,\n                \"taxName2\": null,\n                \"taxAmount2\": null,\n                \"compounded_tax\": false,\n                \"qty\": 1,\n                \"unit_cost\": {\n                    \"amount\": \"150\",\n                    \"code\": \"CAD\"\n                },\n                \"credit_note\": null\n            }\n        ],\n        \"clientid\": {{clientid}}\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://api.freshbooks.com/accounting/account/{{accountid}}/credit_notes/credit_notes",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "accounting",
        "account",
        "{{accountid}}",
        "credit_notes",
        "credit_notes"
      ]
    }
  },
  "response": [
  ]
}