unicodeC / New FreshBooks / Create Prepayment Credit
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// 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": "0000070",
// "currency_code": "CAD",
// "create_date": "2020-07-31",
// "notes": "Thank you for paying ahead of time",
// "credit_type": "prepayment",
// "terms": "Will be applied to future invoice",
// "lines": [
// {
// "name": "Credit",
// "description": "PrePayment for work",
// "taxName1": null,
// "taxAmount1": null,
// "taxName2": null,
// "taxAmount2": null,
// "compounded_tax": false,
// "qty": 1,
// "unit_cost": {
// "amount": "200",
// "code": "CAD"
// },
// "credit_note": null
// }
// ],
// "clientid": 123
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"credit_note.credit_number",L"0000070");
CkJsonObjectW_UpdateString(json,L"credit_note.currency_code",L"CAD");
CkJsonObjectW_UpdateString(json,L"credit_note.create_date",L"2020-07-31");
CkJsonObjectW_UpdateString(json,L"credit_note.notes",L"Thank you for paying ahead of time");
CkJsonObjectW_UpdateString(json,L"credit_note.credit_type",L"prepayment");
CkJsonObjectW_UpdateString(json,L"credit_note.terms",L"Will be applied to future invoice");
CkJsonObjectW_UpdateString(json,L"credit_note.lines[0].name",L"Credit");
CkJsonObjectW_UpdateString(json,L"credit_note.lines[0].description",L"PrePayment for work");
CkJsonObjectW_UpdateNull(json,L"credit_note.lines[0].taxName1");
CkJsonObjectW_UpdateNull(json,L"credit_note.lines[0].taxAmount1");
CkJsonObjectW_UpdateNull(json,L"credit_note.lines[0].taxName2");
CkJsonObjectW_UpdateNull(json,L"credit_note.lines[0].taxAmount2");
CkJsonObjectW_UpdateBool(json,L"credit_note.lines[0].compounded_tax",FALSE);
CkJsonObjectW_UpdateInt(json,L"credit_note.lines[0].qty",1);
CkJsonObjectW_UpdateString(json,L"credit_note.lines[0].unit_cost.amount",L"200");
CkJsonObjectW_UpdateString(json,L"credit_note.lines[0].unit_cost.code",L"CAD");
CkJsonObjectW_UpdateNull(json,L"credit_note.lines[0].credit_note");
CkJsonObjectW_UpdateInt(json,L"credit_note.clientid",123);
CkHttpW_SetRequestHeader(http,L"Authorization",L"Bearer");
resp = CkHttpW_PostJson3(http,L"https://api.freshbooks.com/accounting/account/E86Qp/credit_notes/credit_notes",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Authorization: Bearer "
-d '{
"credit_note": {
"credit_number": "0000070",
"currency_code": "CAD",
"create_date": "2020-07-31",
"notes": "Thank you for paying ahead of time",
"credit_type": "prepayment",
"terms": "Will be applied to future invoice",
"lines": [
{
"name": "Credit",
"description": "PrePayment for work",
"taxName1": null,
"taxAmount1": null,
"taxName2": null,
"taxAmount2": null,
"compounded_tax": false,
"qty": 1,
"unit_cost": {
"amount": "200",
"code": "CAD"
},
"credit_note": null
}
],
"clientid": {{clientId}}
}
}'
https://api.freshbooks.com/accounting/account/E86Qp/credit_notes/credit_notes
Postman Collection Item JSON
{
"name": "Create Prepayment Credit",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer ",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"credit_note\": {\n \"credit_number\": \"0000070\",\n \"currency_code\": \"CAD\",\n \"create_date\": \"2020-07-31\",\n \"notes\": \"Thank you for paying ahead of time\",\n \"credit_type\": \"prepayment\",\n \"terms\": \"Will be applied to future invoice\",\n \"lines\": [\n {\n \"name\": \"Credit\",\n \"description\": \"PrePayment for work\",\n \"taxName1\": null,\n \"taxAmount1\": null,\n \"taxName2\": null,\n \"taxAmount2\": null,\n \"compounded_tax\": false,\n \"qty\": 1,\n \"unit_cost\": {\n \"amount\": \"200\",\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/E86Qp/credit_notes/credit_notes",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"accounting",
"account",
"E86Qp",
"credit_notes",
"credit_notes"
]
}
},
"response": [
]
}