Chilkat Online Tools

C / New FreshBooks / Create Single Project

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject json;
    HCkHttpResponse resp;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    int id;
    int identity_id;
    const char *role;
    const char *first_name;
    const char *last_name;
    const char *email;
    const char *company;
    BOOL active;
    int Id;
    const char *Title;
    const char *Description;
    const char *Due_date;
    int Client_id;
    BOOL Internal;
    const char *Budget;
    const char *Fixed_price;
    const char *Rate;
    const char *Billing_method;
    const char *Project_type;
    BOOL Active;
    BOOL Complete;
    BOOL Sample;
    const char *Created_at;
    const char *Updated_at;
    const char *Logged_duration;
    const char *Billed_amount;
    const char *Billed_status;
    const char *Retainer_id;
    int GroupId;
    const char *Pending_invitations;
    int i;
    int count_i;

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

    http = CkHttp_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.

    // {
    //   "project": {
    //     "title": "Titikaka Hiking Guide",
    //     "client_id": 123,
    //     "project_type": "fixed_price",
    //     "fixed_price": "3000",
    //     "due_date": "2019-04-18",
    //     "services": [
    //       {
    //         "id": 123,
    //         "billable": true,
    //         "vis_state": 0
    //       },
    //       {
    //         "id": 123,
    //         "billable": true,
    //         "vis_state": 0
    //       },
    //       {
    //         "id": 123,
    //         "billable": true,
    //         "vis_state": 0
    //       },
    //       {
    //         "id": 123,
    //         "billable": true,
    //         "vis_state": 0
    //       }
    //     ]
    //   }
    // }

    json = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"project.title","Titikaka Hiking Guide");
    CkJsonObject_UpdateInt(json,"project.client_id",123);
    CkJsonObject_UpdateString(json,"project.project_type","fixed_price");
    CkJsonObject_UpdateString(json,"project.fixed_price","3000");
    CkJsonObject_UpdateString(json,"project.due_date","2019-04-18");
    CkJsonObject_UpdateInt(json,"project.services[0].id",123);
    CkJsonObject_UpdateBool(json,"project.services[0].billable",TRUE);
    CkJsonObject_UpdateInt(json,"project.services[0].vis_state",0);
    CkJsonObject_UpdateInt(json,"project.services[1].id",123);
    CkJsonObject_UpdateBool(json,"project.services[1].billable",TRUE);
    CkJsonObject_UpdateInt(json,"project.services[1].vis_state",0);
    CkJsonObject_UpdateInt(json,"project.services[2].id",123);
    CkJsonObject_UpdateBool(json,"project.services[2].billable",TRUE);
    CkJsonObject_UpdateInt(json,"project.services[2].vis_state",0);
    CkJsonObject_UpdateInt(json,"project.services[3].id",123);
    CkJsonObject_UpdateBool(json,"project.services[3].billable",TRUE);
    CkJsonObject_UpdateInt(json,"project.services[3].vis_state",0);

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttp_putAuthToken(http,"<access_token>");
    CkHttp_SetRequestHeader(http,"Content-Type","application/json");

    resp = CkHttp_PostJson3(http,"https://api.freshbooks.com/projects/business/{{businessId}}/projects","application/json",json);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        return;
    }

    sbResponseBody = CkStringBuilder_Create();
    CkHttpResponse_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);
    CkJsonObject_putEmitCompact(jResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(jResp));

    respStatusCode = CkHttpResponse_getStatusCode(resp);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttpResponse_header(resp));
        printf("Failed.\n");
        CkHttpResponse_Dispose(resp);
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(jResp);
        return;
    }

    CkHttpResponse_Dispose(resp);

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

    // {
    //   "project": {
    //     "id": 3018266,
    //     "title": "Titikaka Hiking Guide",
    //     "description": null,
    //     "due_date": "2019-04-18",
    //     "client_id": 31006,
    //     "internal": false,
    //     "budget": null,
    //     "fixed_price": "3000.00",
    //     "rate": null,
    //     "billing_method": null,
    //     "project_type": "fixed_price",
    //     "active": true,
    //     "complete": false,
    //     "sample": false,
    //     "created_at": "2019-05-08T20:06:55",
    //     "updated_at": "2019-05-08T20:06:55",
    //     "logged_duration": null,
    //     "services": [
    //     ],
    //     "billed_amount": "0.00",
    //     "billed_status": "unbilled",
    //     "retainer_id": null,
    //     "group": {
    //       "id": 5049390,
    //       "members": [
    //         {
    //           "id": 6578346,
    //           "identity_id": 37256,
    //           "role": "owner",
    //           "first_name": "Marshall",
    //           "last_name": "Johnston",
    //           "email": "api.freshbooks@freshbooks.com",
    //           "company": "Postman Sandbox",
    //           "active": true
    //         }
    //       ],
    //       "pending_invitations": null
    //     }
    //   }
    // }

    // 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.

    Id = CkJsonObject_IntOf(jResp,"project.id");
    Title = CkJsonObject_stringOf(jResp,"project.title");
    Description = CkJsonObject_stringOf(jResp,"project.description");
    Due_date = CkJsonObject_stringOf(jResp,"project.due_date");
    Client_id = CkJsonObject_IntOf(jResp,"project.client_id");
    Internal = CkJsonObject_BoolOf(jResp,"project.internal");
    Budget = CkJsonObject_stringOf(jResp,"project.budget");
    Fixed_price = CkJsonObject_stringOf(jResp,"project.fixed_price");
    Rate = CkJsonObject_stringOf(jResp,"project.rate");
    Billing_method = CkJsonObject_stringOf(jResp,"project.billing_method");
    Project_type = CkJsonObject_stringOf(jResp,"project.project_type");
    Active = CkJsonObject_BoolOf(jResp,"project.active");
    Complete = CkJsonObject_BoolOf(jResp,"project.complete");
    Sample = CkJsonObject_BoolOf(jResp,"project.sample");
    Created_at = CkJsonObject_stringOf(jResp,"project.created_at");
    Updated_at = CkJsonObject_stringOf(jResp,"project.updated_at");
    Logged_duration = CkJsonObject_stringOf(jResp,"project.logged_duration");
    Billed_amount = CkJsonObject_stringOf(jResp,"project.billed_amount");
    Billed_status = CkJsonObject_stringOf(jResp,"project.billed_status");
    Retainer_id = CkJsonObject_stringOf(jResp,"project.retainer_id");
    GroupId = CkJsonObject_IntOf(jResp,"project.group.id");
    Pending_invitations = CkJsonObject_stringOf(jResp,"project.group.pending_invitations");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"project.services");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"project.group.members");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        id = CkJsonObject_IntOf(jResp,"project.group.members[i].id");
        identity_id = CkJsonObject_IntOf(jResp,"project.group.members[i].identity_id");
        role = CkJsonObject_stringOf(jResp,"project.group.members[i].role");
        first_name = CkJsonObject_stringOf(jResp,"project.group.members[i].first_name");
        last_name = CkJsonObject_stringOf(jResp,"project.group.members[i].last_name");
        email = CkJsonObject_stringOf(jResp,"project.group.members[i].email");
        company = CkJsonObject_stringOf(jResp,"project.group.members[i].company");
        active = CkJsonObject_BoolOf(jResp,"project.group.members[i].active");
        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkJsonObject_Dispose(json);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
  "project": {
    "title": "Titikaka Hiking Guide",
    "client_id": {{customerId}},
    "project_type": "fixed_price",
    "fixed_price": "3000",
    "due_date": "2019-04-18",
    "services": 
    [
    	{"id": {{serviceid}}, "billable": true, "vis_state": 0}, {"id": {{serviceid}},"billable": true, "vis_state": 0}, {"id": {{serviceid}}, "billable": true, "vis_state": 0}, {"id": {{serviceid}}, "billable": true, "vis_state": 0}
    	]
  }
}'
https://api.freshbooks.com/projects/business/{{businessId}}/projects

Postman Collection Item JSON

{
  "name": "Create Single Project",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let jsonData = JSON.parse(responseBody);",
          "pm.environment.set(\"projectId\", jsonData.project.id);",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"project\": {\n    \"title\": \"Titikaka Hiking Guide\",\n    \"client_id\": {{customerId}},\n    \"project_type\": \"fixed_price\",\n    \"fixed_price\": \"3000\",\n    \"due_date\": \"2019-04-18\",\n    \"services\": \n    [\n    \t{\"id\": {{serviceid}}, \"billable\": true, \"vis_state\": 0}, {\"id\": {{serviceid}},\"billable\": true, \"vis_state\": 0}, {\"id\": {{serviceid}}, \"billable\": true, \"vis_state\": 0}, {\"id\": {{serviceid}}, \"billable\": true, \"vis_state\": 0}\n    \t]\n  }\n}"
    },
    "url": {
      "raw": "https://api.freshbooks.com/projects/business/{{businessId}}/projects",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "projects",
        "business",
        "{{businessId}}",
        "projects"
      ]
    }
  },
  "response": [
    {
      "name": "Create Single Project",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "type": "text",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project\": {\n    \"title\": \"Titikaka Hiking Guide\",\n    \"client_id\": {{customerId}},\n    \"project_type\": \"fixed_price\",\n    \"fixed_price\": \"3000\",\n    \"due_date\": \"2019-04-18\"\n  }\n}"
        },
        "url": {
          "raw": "https://api.freshbooks.com/projects/business/{{businessId}}/projects",
          "protocol": "https",
          "host": [
            "api",
            "freshbooks",
            "com"
          ],
          "path": [
            "projects",
            "business",
            "{{businessId}}",
            "projects"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "nginx"
        },
        {
          "key": "Content-Type",
          "value": "application/vnd.api+json"
        },
        {
          "key": "X-Version",
          "value": "1905.7.0"
        },
        {
          "key": "X-NewRelic-App-Data",
          "value": "PxQBWV5TCBABVllUBAQOU10TGhE1AwE2QgNWEVlbQFtcCxYnRA9QFg1ZWU4FDFZFVRYSBxlDUhULRERQBxVNEkINUgdbTEccQQBKDkQTUAdeRkUODAZbR0NGTVIbARlUVAcEB1VTVVoBUQhWAQsFBB9UDlQdQ1dSVVBSBFFRD1dVVldVAAIVSgJQWkAHOw=="
        },
        {
          "key": "X-RateLimit-Limit",
          "value": "20"
        },
        {
          "key": "X-RateLimit-Remaining",
          "value": "8"
        },
        {
          "key": "X-RateLimit-Reset",
          "value": "1557346076"
        },
        {
          "key": "Retry-After",
          "value": "60"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "*"
        },
        {
          "key": "Expires",
          "value": "Tue, 08 May 2018 20:06:55 GMT"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Via",
          "value": "1.1 google"
        },
        {
          "key": "Via",
          "value": "1.1 varnish"
        },
        {
          "key": "Content-Length",
          "value": "759"
        },
        {
          "key": "Accept-Ranges",
          "value": "bytes"
        },
        {
          "key": "Date",
          "value": "Wed, 08 May 2019 20:06:55 GMT"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "X-Served-By",
          "value": "cache-mdw17361-MDW"
        },
        {
          "key": "X-Cache",
          "value": "MISS"
        },
        {
          "key": "X-Cache-Hits",
          "value": "0"
        },
        {
          "key": "Country",
          "value": "CA"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=31536000; includeSubDomains; preload"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"project\": {\n        \"id\": 3018266,\n        \"title\": \"Titikaka Hiking Guide\",\n        \"description\": null,\n        \"due_date\": \"2019-04-18\",\n        \"client_id\": 31006,\n        \"internal\": false,\n        \"budget\": null,\n        \"fixed_price\": \"3000.00\",\n        \"rate\": null,\n        \"billing_method\": null,\n        \"project_type\": \"fixed_price\",\n        \"active\": true,\n        \"complete\": false,\n        \"sample\": false,\n        \"created_at\": \"2019-05-08T20:06:55\",\n        \"updated_at\": \"2019-05-08T20:06:55\",\n        \"logged_duration\": null,\n        \"services\": [],\n        \"billed_amount\": \"0.00\",\n        \"billed_status\": \"unbilled\",\n        \"retainer_id\": null,\n        \"group\": {\n            \"id\": 5049390,\n            \"members\": [\n                {\n                    \"id\": 6578346,\n                    \"identity_id\": 37256,\n                    \"role\": \"owner\",\n                    \"first_name\": \"Marshall\",\n                    \"last_name\": \"Johnston\",\n                    \"email\": \"api.freshbooks@freshbooks.com\",\n                    \"company\": \"Postman Sandbox\",\n                    \"active\": true\n                }\n            ],\n            \"pending_invitations\": null\n        }\n    }\n}"
    }
  ]
}