Chilkat Online Tools

unicodeCpp / New FreshBooks / Edit Secondary Contact ID

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>

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

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

    // {
    //   "contact": {
    //     "email": "secondary@emailaddress.com",
    //     "fname": "FirstName",
    //     "lname": "LastName",
    //     "phone1": ""
    //   }
    // }

    CkJsonObjectW json;
    json.UpdateString(L"contact.email",L"secondary@emailaddress.com");
    json.UpdateString(L"contact.fname",L"FirstName");
    json.UpdateString(L"contact.lname",L"LastName");
    json.UpdateString(L"contact.phone1",L"");

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

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);

    CkHttpResponseW *resp = http.PTextSb(L"PUT",L"https://api.freshbooks.com/accounting/account/{{accountid}}/users/contacts/{{contactid}}",sbRequestBody,L"utf-8",L"application/json",false,false);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "contact": {
        "email": "secondary@emailaddress.com",
        "fname": "FirstName",
        "lname": "LastName",
        "phone1": ""
    }
}'
https://api.freshbooks.com/accounting/account/{{accountid}}/users/contacts/{{contactid}}

Postman Collection Item JSON

{
  "name": "Edit Secondary Contact ID",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"contact\": {\n        \"email\": \"secondary@emailaddress.com\",\n        \"fname\": \"FirstName\",\n        \"lname\": \"LastName\",\n        \"phone1\": \"\"\n    }\n}"
    },
    "url": {
      "raw": "https://api.freshbooks.com/accounting/account/{{accountid}}/users/contacts/{{contactid}}",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "accounting",
        "account",
        "{{accountid}}",
        "users",
        "contacts",
        "{{contactid}}"
      ]
    },
    "description": "Allows you to edit a specific secondary contact"
  },
  "response": [
  ]
}