Chilkat Online Tools

C++ / New FreshBooks / Add Bill from Vendor

Back to Collection Items

#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
#include <CkStringBuilder.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http;
    bool success;

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

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

    // {
    //   "bill": {
    //     "vendorid": "5",
    //     "previous_vendor_id": null,
    //     "bill_number": null,
    //     "issue_date": "2020-10-09",
    //     "due_offset_days": 39,
    //     "currency_code": "USD",
    //     "language": "en",
    //     "lines": [
    //       {
    //         "tax_percent1": null,
    //         "tax_percent2": null,
    //         "unit_cost": {
    //           "amount": "125",
    //           "code": "USD"
    //         },
    //         "description": "Malm Side Table",
    //         "tax_name1": null,
    //         "quantity": 1,
    //         "tax_name2": null,
    //         "compounded_tax": false,
    //         "categoryid": "65773"
    //       },
    //       {
    //         "tax_percent1": null,
    //         "tax_percent2": null,
    //         "unit_cost": {
    //           "amount": "250",
    //           "code": "USD"
    //         },
    //         "description": "Malm Book Shelf",
    //         "tax_name1": null,
    //         "quantity": 1,
    //         "tax_name2": null,
    //         "compounded_tax": false,
    //         "categoryid": "65773"
    //       }
    //     ],
    //     "attachment": null
    //   }
    // }

    CkJsonObject json;
    json.UpdateString("bill.vendorid","5");
    json.UpdateNull("bill.previous_vendor_id");
    json.UpdateNull("bill.bill_number");
    json.UpdateString("bill.issue_date","2020-10-09");
    json.UpdateInt("bill.due_offset_days",39);
    json.UpdateString("bill.currency_code","USD");
    json.UpdateString("bill.language","en");
    json.UpdateNull("bill.lines[0].tax_percent1");
    json.UpdateNull("bill.lines[0].tax_percent2");
    json.UpdateString("bill.lines[0].unit_cost.amount","125");
    json.UpdateString("bill.lines[0].unit_cost.code","USD");
    json.UpdateString("bill.lines[0].description","Malm Side Table");
    json.UpdateNull("bill.lines[0].tax_name1");
    json.UpdateInt("bill.lines[0].quantity",1);
    json.UpdateNull("bill.lines[0].tax_name2");
    json.UpdateBool("bill.lines[0].compounded_tax",false);
    json.UpdateString("bill.lines[0].categoryid","65773");
    json.UpdateNull("bill.lines[1].tax_percent1");
    json.UpdateNull("bill.lines[1].tax_percent2");
    json.UpdateString("bill.lines[1].unit_cost.amount","250");
    json.UpdateString("bill.lines[1].unit_cost.code","USD");
    json.UpdateString("bill.lines[1].description","Malm Book Shelf");
    json.UpdateNull("bill.lines[1].tax_name1");
    json.UpdateInt("bill.lines[1].quantity",1);
    json.UpdateNull("bill.lines[1].tax_name2");
    json.UpdateBool("bill.lines[1].compounded_tax",false);
    json.UpdateString("bill.lines[1].categoryid","65773");
    json.UpdateNull("bill.attachment");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");

    CkHttpResponse *resp = http.PostJson3("https://api.freshbooks.com/accounting/account/{{accountId}}/bills/bills","application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        std::cout << http.lastErrorText() << "\r\n";
        return;
    }

    CkStringBuilder sbResponseBody;
    resp->GetBodySb(sbResponseBody);

    CkJsonObject jResp;
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    std::cout << "Response Body:" << "\r\n";
    std::cout << jResp.emit() << "\r\n";

    int respStatusCode = resp->get_StatusCode();
    std::cout << "Response Status Code = " << respStatusCode << "\r\n";
    if (respStatusCode >= 400) {
        std::cout << "Response Header:" << "\r\n";
        std::cout << resp->header() << "\r\n";
        std::cout << "Failed." << "\r\n";
        delete resp;
        return;
    }

    delete resp;

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

    // {
    //   "response": {
    //     "result": {
    //       "bill": {
    //         "amount": {
    //           "amount": "375.00",
    //           "code": "USD"
    //         },
    //         "attachment": null,
    //         "bill_number": null,
    //         "bill_payments": [
    //         ],
    //         "created_at": "2020-10-09 15:28:49",
    //         "currency_code": "USD",
    //         "due_date": "2020-11-17",
    //         "due_offset_days": 39,
    //         "id": 7,
    //         "issue_date": "2020-10-09",
    //         "language": "en",
    //         "lines": [
    //           {
    //             "amount": {
    //               "amount": "125.00",
    //               "code": "USD"
    //             },
    //             "category": {
    //               "category": "Office Expenses & Postage",
    //               "categoryid": 65773,
    //               "created_at": "2016-11-17 14:22:35",
    //               "id": 65773,
    //               "is_cogs": false,
    //               "is_editable": false,
    //               "parentid": null,
    //               "updated_at": "2016-11-17 14:22:35",
    //               "vis_state": 0
    //             },
    //             "description": "Malm Side Table",
    //             "id": 13,
    //             "list_index": 1,
    //             "quantity": "1",
    //             "tax_amount1": null,
    //             "tax_amount2": null,
    //             "tax_authorityid1": null,
    //             "tax_authorityid2": null,
    //             "tax_name1": null,
    //             "tax_name2": null,
    //             "tax_percent1": null,
    //             "tax_percent2": null,
    //             "total_amount": {
    //               "amount": "125.00",
    //               "code": "USD"
    //             },
    //             "unit_cost": {
    //               "amount": "125.00",
    //               "code": "USD"
    //             }
    //           },
    //           {
    //             "amount": {
    //               "amount": "250.00",
    //               "code": "USD"
    //             },
    //             "category": {
    //               "category": "Office Expenses & Postage",
    //               "categoryid": 65773,
    //               "created_at": "2016-11-17 14:22:35",
    //               "id": 65773,
    //               "is_cogs": false,
    //               "is_editable": false,
    //               "parentid": null,
    //               "updated_at": "2016-11-17 14:22:35",
    //               "vis_state": 0
    //             },
    //             "description": "Malm Book Shelf",
    //             "id": 15,
    //             "list_index": 2,
    //             "quantity": "1",
    //             "tax_amount1": null,
    //             "tax_amount2": null,
    //             "tax_authorityid1": null,
    //             "tax_authorityid2": null,
    //             "tax_name1": null,
    //             "tax_name2": null,
    //             "tax_percent1": null,
    //             "tax_percent2": null,
    //             "total_amount": {
    //               "amount": "250.00",
    //               "code": "USD"
    //             },
    //             "unit_cost": {
    //               "amount": "250.00",
    //               "code": "USD"
    //             }
    //           }
    //         ],
    //         "outstanding": {
    //           "amount": "375.00",
    //           "code": "USD"
    //         },
    //         "overall_category": "Office Expenses & Postage",
    //         "overall_description": "Malm Side Table",
    //         "paid": {
    //           "amount": "0.00",
    //           "code": "USD"
    //         },
    //         "status": "unpaid",
    //         "tax_amount": {
    //           "amount": "0.00",
    //           "code": "USD"
    //         },
    //         "total_amount": {
    //           "amount": "375.00",
    //           "code": "USD"
    //         },
    //         "updated_at": "2020-10-09 15:28:49",
    //         "vis_state": 0
    //       }
    //     }
    //   }
    // }

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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    const char *amountAmount = 0;
    const char *amountCode = 0;
    const char *Category = 0;
    int Categoryid;
    const char *categoryCreated_at = 0;
    int categoryId;
    bool Is_cogs;
    bool Is_editable;
    const char *Parentid = 0;
    const char *categoryUpdated_at = 0;
    int categoryVis_state;
    const char *description = 0;
    int id;
    int list_index;
    const char *quantity = 0;
    const char *tax_amount1 = 0;
    const char *tax_amount2 = 0;
    const char *tax_authorityid1 = 0;
    const char *tax_authorityid2 = 0;
    const char *tax_name1 = 0;
    const char *tax_name2 = 0;
    const char *tax_percent1 = 0;
    const char *tax_percent2 = 0;
    const char *total_amountAmount = 0;
    const char *total_amountCode = 0;
    const char *unit_costAmount = 0;
    const char *unit_costCode = 0;

    const char *Amount = jResp.stringOf("response.result.bill.amount.amount");
    const char *Code = jResp.stringOf("response.result.bill.amount.code");
    const char *Attachment = jResp.stringOf("response.result.bill.attachment");
    const char *Bill_number = jResp.stringOf("response.result.bill.bill_number");
    const char *Created_at = jResp.stringOf("response.result.bill.created_at");
    const char *Currency_code = jResp.stringOf("response.result.bill.currency_code");
    const char *Due_date = jResp.stringOf("response.result.bill.due_date");
    int Due_offset_days = jResp.IntOf("response.result.bill.due_offset_days");
    int Id = jResp.IntOf("response.result.bill.id");
    const char *Issue_date = jResp.stringOf("response.result.bill.issue_date");
    const char *Language = jResp.stringOf("response.result.bill.language");
    const char *OutstandingAmount = jResp.stringOf("response.result.bill.outstanding.amount");
    const char *OutstandingCode = jResp.stringOf("response.result.bill.outstanding.code");
    const char *Overall_category = jResp.stringOf("response.result.bill.overall_category");
    const char *Overall_description = jResp.stringOf("response.result.bill.overall_description");
    const char *PaidAmount = jResp.stringOf("response.result.bill.paid.amount");
    const char *PaidCode = jResp.stringOf("response.result.bill.paid.code");
    const char *Status = jResp.stringOf("response.result.bill.status");
    const char *Tax_amountAmount = jResp.stringOf("response.result.bill.tax_amount.amount");
    const char *Tax_amountCode = jResp.stringOf("response.result.bill.tax_amount.code");
    const char *Total_amountAmount = jResp.stringOf("response.result.bill.total_amount.amount");
    const char *Total_amountCode = jResp.stringOf("response.result.bill.total_amount.code");
    const char *Updated_at = jResp.stringOf("response.result.bill.updated_at");
    int Vis_state = jResp.IntOf("response.result.bill.vis_state");
    int i = 0;
    int count_i = jResp.SizeOfArray("response.result.bill.bill_payments");
    while (i < count_i) {
        jResp.put_I(i);
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray("response.result.bill.lines");
    while (i < count_i) {
        jResp.put_I(i);
        amountAmount = jResp.stringOf("response.result.bill.lines[i].amount.amount");
        amountCode = jResp.stringOf("response.result.bill.lines[i].amount.code");
        Category = jResp.stringOf("response.result.bill.lines[i].category.category");
        Categoryid = jResp.IntOf("response.result.bill.lines[i].category.categoryid");
        categoryCreated_at = jResp.stringOf("response.result.bill.lines[i].category.created_at");
        categoryId = jResp.IntOf("response.result.bill.lines[i].category.id");
        Is_cogs = jResp.BoolOf("response.result.bill.lines[i].category.is_cogs");
        Is_editable = jResp.BoolOf("response.result.bill.lines[i].category.is_editable");
        Parentid = jResp.stringOf("response.result.bill.lines[i].category.parentid");
        categoryUpdated_at = jResp.stringOf("response.result.bill.lines[i].category.updated_at");
        categoryVis_state = jResp.IntOf("response.result.bill.lines[i].category.vis_state");
        description = jResp.stringOf("response.result.bill.lines[i].description");
        id = jResp.IntOf("response.result.bill.lines[i].id");
        list_index = jResp.IntOf("response.result.bill.lines[i].list_index");
        quantity = jResp.stringOf("response.result.bill.lines[i].quantity");
        tax_amount1 = jResp.stringOf("response.result.bill.lines[i].tax_amount1");
        tax_amount2 = jResp.stringOf("response.result.bill.lines[i].tax_amount2");
        tax_authorityid1 = jResp.stringOf("response.result.bill.lines[i].tax_authorityid1");
        tax_authorityid2 = jResp.stringOf("response.result.bill.lines[i].tax_authorityid2");
        tax_name1 = jResp.stringOf("response.result.bill.lines[i].tax_name1");
        tax_name2 = jResp.stringOf("response.result.bill.lines[i].tax_name2");
        tax_percent1 = jResp.stringOf("response.result.bill.lines[i].tax_percent1");
        tax_percent2 = jResp.stringOf("response.result.bill.lines[i].tax_percent2");
        total_amountAmount = jResp.stringOf("response.result.bill.lines[i].total_amount.amount");
        total_amountCode = jResp.stringOf("response.result.bill.lines[i].total_amount.code");
        unit_costAmount = jResp.stringOf("response.result.bill.lines[i].unit_cost.amount");
        unit_costCode = jResp.stringOf("response.result.bill.lines[i].unit_cost.code");
        i = i + 1;
    }
    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '{
    "bill": {
        "vendorid": "5",
        "previous_vendor_id": null,
        "bill_number": null,
        "issue_date": "2020-10-09",
        "due_offset_days": 39,
        "currency_code": "USD",
        "language": "en",
        "lines": [
            {
                "tax_percent1": null,
                "tax_percent2": null,
                "unit_cost": {
                    "amount": "125",
                    "code": "USD"
                },
                "description": "Malm Side Table",
                "tax_name1": null,
                "quantity": 1,
                "tax_name2": null,
                "compounded_tax": false,
                "categoryid": "65773"
            },
            {
                "tax_percent1": null,
                "tax_percent2": null,
                "unit_cost": {
                    "amount": "250",
                    "code": "USD"
                },
                "description": "Malm Book Shelf",
                "tax_name1": null,
                "quantity": 1,
                "tax_name2": null,
                "compounded_tax": false,
                "categoryid": "65773"
            }
        ],
        "attachment": null
    }
}'
https://api.freshbooks.com/accounting/account/{{accountId}}/bills/bills

Postman Collection Item JSON

{
  "name": "Add Bill from Vendor",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"bill\": {\n        \"vendorid\": \"5\",\n        \"previous_vendor_id\": null,\n        \"bill_number\": null,\n        \"issue_date\": \"2020-10-09\",\n        \"due_offset_days\": 39,\n        \"currency_code\": \"USD\",\n        \"language\": \"en\",\n        \"lines\": [\n            {\n                \"tax_percent1\": null,\n                \"tax_percent2\": null,\n                \"unit_cost\": {\n                    \"amount\": \"125\",\n                    \"code\": \"USD\"\n                },\n                \"description\": \"Malm Side Table\",\n                \"tax_name1\": null,\n                \"quantity\": 1,\n                \"tax_name2\": null,\n                \"compounded_tax\": false,\n                \"categoryid\": \"65773\"\n            },\n            {\n                \"tax_percent1\": null,\n                \"tax_percent2\": null,\n                \"unit_cost\": {\n                    \"amount\": \"250\",\n                    \"code\": \"USD\"\n                },\n                \"description\": \"Malm Book Shelf\",\n                \"tax_name1\": null,\n                \"quantity\": 1,\n                \"tax_name2\": null,\n                \"compounded_tax\": false,\n                \"categoryid\": \"65773\"\n            }\n        ],\n        \"attachment\": null\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://api.freshbooks.com/accounting/account/{{accountId}}/bills/bills",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "accounting",
        "account",
        "{{accountId}}",
        "bills",
        "bills"
      ]
    }
  },
  "response": [
    {
      "name": "Add Bill from Vendor",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bill\": {\n        \"vendorid\": \"5\",\n        \"previous_vendor_id\": null,\n        \"bill_number\": null,\n        \"issue_date\": \"2020-10-09\",\n        \"due_offset_days\": 39,\n        \"currency_code\": \"USD\",\n        \"language\": \"en\",\n        \"lines\": [\n            {\n                \"tax_percent1\": null,\n                \"tax_percent2\": null,\n                \"unit_cost\": {\n                    \"amount\": \"125\",\n                    \"code\": \"USD\"\n                },\n                \"description\": \"Malm Side Table\",\n                \"tax_name1\": null,\n                \"quantity\": 1,\n                \"tax_name2\": null,\n                \"compounded_tax\": false,\n                \"categoryid\": \"65773\"\n            },\n            {\n                \"tax_percent1\": null,\n                \"tax_percent2\": null,\n                \"unit_cost\": {\n                    \"amount\": \"250\",\n                    \"code\": \"USD\"\n                },\n                \"description\": \"Malm Book Shelf\",\n                \"tax_name1\": null,\n                \"quantity\": 1,\n                \"tax_name2\": null,\n                \"compounded_tax\": false,\n                \"categoryid\": \"65773\"\n            }\n        ],\n        \"attachment\": null\n    }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://api.freshbooks.com/accounting/account/{{accountId}}/bills/bills",
          "protocol": "https",
          "host": [
            "api",
            "freshbooks",
            "com"
          ],
          "path": [
            "accounting",
            "account",
            "{{accountId}}",
            "bills",
            "bills"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "nginx"
        },
        {
          "key": "Date",
          "value": "Fri, 09 Oct 2020 15:28:49 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "X-NewRelic-App-Data",
          "value": "PxQBWV5TCBABVlVSAwEOVlcTGhE1AwE2QgNWEVlbQFtcCxYnRA9QFg1ZWU4DFVdfRgFPCkNFR0gGWFpfEVwBC1wOS0AUCBgCHVEKVwVWBVZSDwdSX1oJBBxVU1IBHRVVAgYGVQRQVQAAV11UCVwDEB8DWA1CBG4="
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "Content-Security-Policy",
          "value": "default-src 'self'"
        },
        {
          "key": "X-Content-Security-Policy",
          "value": "default-src 'self'"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=31556926; includeSubDomains; preload"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin-when-cross-origin"
        },
        {
          "key": "X-RateLimit-Limit",
          "value": "600"
        },
        {
          "key": "X-RateLimit-Remaining",
          "value": "599"
        },
        {
          "key": "X-RateLimit-Reset",
          "value": "1602257389"
        },
        {
          "key": "Retry-After",
          "value": "59"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "*"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Via",
          "value": "1.1 google"
        },
        {
          "key": "Alt-Svc",
          "value": "h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"response\": {\n        \"result\": {\n            \"bill\": {\n                \"amount\": {\n                    \"amount\": \"375.00\",\n                    \"code\": \"USD\"\n                },\n                \"attachment\": null,\n                \"bill_number\": null,\n                \"bill_payments\": [],\n                \"created_at\": \"2020-10-09 15:28:49\",\n                \"currency_code\": \"USD\",\n                \"due_date\": \"2020-11-17\",\n                \"due_offset_days\": 39,\n                \"id\": 7,\n                \"issue_date\": \"2020-10-09\",\n                \"language\": \"en\",\n                \"lines\": [\n                    {\n                        \"amount\": {\n                            \"amount\": \"125.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"category\": {\n                            \"category\": \"Office Expenses & Postage\",\n                            \"categoryid\": 65773,\n                            \"created_at\": \"2016-11-17 14:22:35\",\n                            \"id\": 65773,\n                            \"is_cogs\": false,\n                            \"is_editable\": false,\n                            \"parentid\": null,\n                            \"updated_at\": \"2016-11-17 14:22:35\",\n                            \"vis_state\": 0\n                        },\n                        \"description\": \"Malm Side Table\",\n                        \"id\": 13,\n                        \"list_index\": 1,\n                        \"quantity\": \"1\",\n                        \"tax_amount1\": null,\n                        \"tax_amount2\": null,\n                        \"tax_authorityid1\": null,\n                        \"tax_authorityid2\": null,\n                        \"tax_name1\": null,\n                        \"tax_name2\": null,\n                        \"tax_percent1\": null,\n                        \"tax_percent2\": null,\n                        \"total_amount\": {\n                            \"amount\": \"125.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"unit_cost\": {\n                            \"amount\": \"125.00\",\n                            \"code\": \"USD\"\n                        }\n                    },\n                    {\n                        \"amount\": {\n                            \"amount\": \"250.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"category\": {\n                            \"category\": \"Office Expenses & Postage\",\n                            \"categoryid\": 65773,\n                            \"created_at\": \"2016-11-17 14:22:35\",\n                            \"id\": 65773,\n                            \"is_cogs\": false,\n                            \"is_editable\": false,\n                            \"parentid\": null,\n                            \"updated_at\": \"2016-11-17 14:22:35\",\n                            \"vis_state\": 0\n                        },\n                        \"description\": \"Malm Book Shelf\",\n                        \"id\": 15,\n                        \"list_index\": 2,\n                        \"quantity\": \"1\",\n                        \"tax_amount1\": null,\n                        \"tax_amount2\": null,\n                        \"tax_authorityid1\": null,\n                        \"tax_authorityid2\": null,\n                        \"tax_name1\": null,\n                        \"tax_name2\": null,\n                        \"tax_percent1\": null,\n                        \"tax_percent2\": null,\n                        \"total_amount\": {\n                            \"amount\": \"250.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"unit_cost\": {\n                            \"amount\": \"250.00\",\n                            \"code\": \"USD\"\n                        }\n                    }\n                ],\n                \"outstanding\": {\n                    \"amount\": \"375.00\",\n                    \"code\": \"USD\"\n                },\n                \"overall_category\": \"Office Expenses & Postage\",\n                \"overall_description\": \"Malm Side Table\",\n                \"paid\": {\n                    \"amount\": \"0.00\",\n                    \"code\": \"USD\"\n                },\n                \"status\": \"unpaid\",\n                \"tax_amount\": {\n                    \"amount\": \"0.00\",\n                    \"code\": \"USD\"\n                },\n                \"total_amount\": {\n                    \"amount\": \"375.00\",\n                    \"code\": \"USD\"\n                },\n                \"updated_at\": \"2020-10-09 15:28:49\",\n                \"vis_state\": 0\n            }\n        }\n    }\n}"
    },
    {
      "name": "Add Bill from Vendor",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"bill\": {\n        \"vendorid\": \"5\",\n        \"previous_vendor_id\": null,\n        \"bill_number\": null,\n        \"issue_date\": \"2020-10-09\",\n        \"due_offset_days\": 39,\n        \"currency_code\": \"USD\",\n        \"language\": \"en\",\n        \"lines\": [\n            {\n                \"tax_percent1\": null,\n                \"tax_percent2\": null,\n                \"unit_cost\": {\n                    \"amount\": \"125\",\n                    \"code\": \"USD\"\n                },\n                \"description\": \"Malm Side Table\",\n                \"tax_name1\": null,\n                \"quantity\": 1,\n                \"tax_name2\": null,\n                \"compounded_tax\": false,\n                \"categoryid\": \"65773\"\n            },\n            {\n                \"tax_percent1\": null,\n                \"tax_percent2\": null,\n                \"unit_cost\": {\n                    \"amount\": \"250\",\n                    \"code\": \"USD\"\n                },\n                \"description\": \"Malm Book Shelf\",\n                \"tax_name1\": null,\n                \"quantity\": 1,\n                \"tax_name2\": null,\n                \"compounded_tax\": false,\n                \"categoryid\": \"65773\"\n            }\n        ],\n        \"attachment\": null\n    }\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://api.freshbooks.com/accounting/account/{{accountId}}/bills/bills",
          "protocol": "https",
          "host": [
            "api",
            "freshbooks",
            "com"
          ],
          "path": [
            "accounting",
            "account",
            "{{accountId}}",
            "bills",
            "bills"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "nginx"
        },
        {
          "key": "Date",
          "value": "Fri, 09 Oct 2020 15:28:49 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "X-NewRelic-App-Data",
          "value": "PxQBWV5TCBABVlVSAwEOVlcTGhE1AwE2QgNWEVlbQFtcCxYnRA9QFg1ZWU4DFVdfRgFPCkNFR0gGWFpfEVwBC1wOS0AUCBgCHVEKVwVWBVZSDwdSX1oJBBxVU1IBHRVVAgYGVQRQVQAAV11UCVwDEB8DWA1CBG4="
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "Content-Security-Policy",
          "value": "default-src 'self'"
        },
        {
          "key": "X-Content-Security-Policy",
          "value": "default-src 'self'"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=31556926; includeSubDomains; preload"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin-when-cross-origin"
        },
        {
          "key": "X-RateLimit-Limit",
          "value": "600"
        },
        {
          "key": "X-RateLimit-Remaining",
          "value": "599"
        },
        {
          "key": "X-RateLimit-Reset",
          "value": "1602257389"
        },
        {
          "key": "Retry-After",
          "value": "59"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "*"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Via",
          "value": "1.1 google"
        },
        {
          "key": "Alt-Svc",
          "value": "h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"response\": {\n        \"result\": {\n            \"bill\": {\n                \"amount\": {\n                    \"amount\": \"375.00\",\n                    \"code\": \"USD\"\n                },\n                \"attachment\": null,\n                \"bill_number\": null,\n                \"bill_payments\": [],\n                \"created_at\": \"2020-10-09 15:28:49\",\n                \"currency_code\": \"USD\",\n                \"due_date\": \"2020-11-17\",\n                \"due_offset_days\": 39,\n                \"id\": 7,\n                \"issue_date\": \"2020-10-09\",\n                \"language\": \"en\",\n                \"lines\": [\n                    {\n                        \"amount\": {\n                            \"amount\": \"125.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"category\": {\n                            \"category\": \"Office Expenses & Postage\",\n                            \"categoryid\": 65773,\n                            \"created_at\": \"2016-11-17 14:22:35\",\n                            \"id\": 65773,\n                            \"is_cogs\": false,\n                            \"is_editable\": false,\n                            \"parentid\": null,\n                            \"updated_at\": \"2016-11-17 14:22:35\",\n                            \"vis_state\": 0\n                        },\n                        \"description\": \"Malm Side Table\",\n                        \"id\": 13,\n                        \"list_index\": 1,\n                        \"quantity\": \"1\",\n                        \"tax_amount1\": null,\n                        \"tax_amount2\": null,\n                        \"tax_authorityid1\": null,\n                        \"tax_authorityid2\": null,\n                        \"tax_name1\": null,\n                        \"tax_name2\": null,\n                        \"tax_percent1\": null,\n                        \"tax_percent2\": null,\n                        \"total_amount\": {\n                            \"amount\": \"125.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"unit_cost\": {\n                            \"amount\": \"125.00\",\n                            \"code\": \"USD\"\n                        }\n                    },\n                    {\n                        \"amount\": {\n                            \"amount\": \"250.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"category\": {\n                            \"category\": \"Office Expenses & Postage\",\n                            \"categoryid\": 65773,\n                            \"created_at\": \"2016-11-17 14:22:35\",\n                            \"id\": 65773,\n                            \"is_cogs\": false,\n                            \"is_editable\": false,\n                            \"parentid\": null,\n                            \"updated_at\": \"2016-11-17 14:22:35\",\n                            \"vis_state\": 0\n                        },\n                        \"description\": \"Malm Book Shelf\",\n                        \"id\": 15,\n                        \"list_index\": 2,\n                        \"quantity\": \"1\",\n                        \"tax_amount1\": null,\n                        \"tax_amount2\": null,\n                        \"tax_authorityid1\": null,\n                        \"tax_authorityid2\": null,\n                        \"tax_name1\": null,\n                        \"tax_name2\": null,\n                        \"tax_percent1\": null,\n                        \"tax_percent2\": null,\n                        \"total_amount\": {\n                            \"amount\": \"250.00\",\n                            \"code\": \"USD\"\n                        },\n                        \"unit_cost\": {\n                            \"amount\": \"250.00\",\n                            \"code\": \"USD\"\n                        }\n                    }\n                ],\n                \"outstanding\": {\n                    \"amount\": \"375.00\",\n                    \"code\": \"USD\"\n                },\n                \"overall_category\": \"Office Expenses & Postage\",\n                \"overall_description\": \"Malm Side Table\",\n                \"paid\": {\n                    \"amount\": \"0.00\",\n                    \"code\": \"USD\"\n                },\n                \"status\": \"unpaid\",\n                \"tax_amount\": {\n                    \"amount\": \"0.00\",\n                    \"code\": \"USD\"\n                },\n                \"total_amount\": {\n                    \"amount\": \"375.00\",\n                    \"code\": \"USD\"\n                },\n                \"updated_at\": \"2020-10-09 15:28:49\",\n                \"vis_state\": 0\n            }\n        }\n    }\n}"
    }
  ]
}