Chilkat Online Tools

Unicode C++ / New FreshBooks / Create Recurring Expense

Back to Collection Items

void ChilkatSample(void)
    {
    json.UpdateString(L"expense_profile.frequency",L"m");    json.UpdateNull(L"expense_profile.profileid");    json.UpdateString(L"expense_profile.start_date",L"2019-01-13");    json.UpdateNull(L"expense_profile.end_date");    json.UpdateString(L"expense_profile.next_issue_date",L"2019-01-13");    json.UpdateBool(L"expense_profile.is_cogs",false);    json.UpdateString(L"expense_profile.amount.amount",L"100");    json.UpdateString(L"expense_profile.amount.code",L"CAD");    json.UpdateNull(L"expense_profile.notes");    json.UpdateString(L"expense_profile.vendor",L"Recurring Expenses Inc.");    json.UpdateInt(L"expense_profile.staffid",1);    json.UpdateNull(L"expense_profile.author_name");    json.UpdateString(L"expense_profile.taxName1",L"HST");    json.UpdateNull(L"expense_profile.taxName2");    json.UpdateString(L"expense_profile.taxAmount1.amount",L"11.5");    json.UpdateString(L"expense_profile.taxAmount1.code",L"CAD");    json.UpdateInt(L"expense_profile.taxPercent1",13);    json.UpdateNull(L"expense_profile.taxPercent2");    json.UpdateNull(L"expense_profile.markup_percent");    json.UpdateBool(L"expense_profile.from_bulk_import",false);    json.UpdateString(L"expense_profile.categoryid",L"4723650");    json.UpdateNull(L"expense_profile.clientid");    http.put_AuthToken(L"<access_token>");
    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "expense_profile": {
        "frequency": "m",
        "profileid": null,
        "start_date": "2019-01-13",
        "end_date": null,
        "next_issue_date": "2019-01-13",
        "is_cogs": false,
        "amount": {
            "amount": "100",
            "code": "CAD"
        },
        "notes": null,
        "vendor": "Recurring Expenses Inc.",
        "staffid": 1,
        "author_name": null,
        "taxName1": "HST",
        "taxName2": null,
        "taxAmount1": {
            "amount": "11.5",
            "code": "CAD"
        },
        "taxPercent1": 13,
        "taxPercent2": null,
        "markup_percent": null,
        "from_bulk_import": false,
        "categoryid": "4723650",
        "clientid": null
    }
}'
https://api.freshbooks.com/accounting/account/{{accountid}}/expense_profiles/expense_profiles

Postman Collection Item JSON

{
  "name": "Create Recurring Expense",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"expense_profile\": {\n        \"frequency\": \"m\",\n        \"profileid\": null,\n        \"start_date\": \"2019-01-13\",\n        \"end_date\": null,\n        \"next_issue_date\": \"2019-01-13\",\n        \"is_cogs\": false,\n        \"amount\": {\n            \"amount\": \"100\",\n            \"code\": \"CAD\"\n        },\n        \"notes\": null,\n        \"vendor\": \"Recurring Expenses Inc.\",\n        \"staffid\": 1,\n        \"author_name\": null,\n        \"taxName1\": \"HST\",\n        \"taxName2\": null,\n        \"taxAmount1\": {\n            \"amount\": \"11.5\",\n            \"code\": \"CAD\"\n        },\n        \"taxPercent1\": 13,\n        \"taxPercent2\": null,\n        \"markup_percent\": null,\n        \"from_bulk_import\": false,\n        \"categoryid\": \"4723650\",\n        \"clientid\": null\n    }\n}"
    },
    "url": {
      "raw": "https://api.freshbooks.com/accounting/account/{{accountid}}/expense_profiles/expense_profiles",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "accounting",
        "account",
        "{{accountid}}",
        "expense_profiles",
        "expense_profiles"
      ]
    }
  },
  "response": [
  ]
}