Sample code for 30+ languages & platforms
Lianja

GetHarvest - Get Client Contacts

See more GetHarvest Examples

Returns a list of your contacts.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

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

loHttp = createobject("CkHttp")

// Implements the following CURL command:

// curl "https://api.harvestapp.com/v2/contacts" \
//   -H "Authorization: Bearer ACCESS_TOKEN" \
//   -H "Harvest-Account-Id: ACCOUNT_ID" \
//   -H "User-Agent: MyApp (yourname@example.com)"

loHttp.SetRequestHeader("User-Agent","MyApp (yourname@example.com)")
loHttp.SetRequestHeader("Authorization","Bearer ACCESS_TOKEN")
loHttp.SetRequestHeader("Harvest-Account-Id","ACCOUNT_ID")

loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://api.harvestapp.com/v2/contacts",loSbResponseBody)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loSbResponseBody
    return
endif

loJResp = createobject("CkJsonObject")
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = .F.

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + str(lnRespStatusCode)
if (lnRespStatusCode >= 400) then
    ? "Response Header:"
    ? loHttp.LastHeader
    ? "Failed."
    release loHttp
    release loSbResponseBody
    release loJResp
    return
endif

// Sample JSON response:

// {
//   "contacts": [
//     {
//       "id": 4706479,
//       "title": "Owner",
//       "first_name": "Jane",
//       "last_name": "Doe",
//       "email": "janedoe@example.com",
//       "phone_office": "(203) 697-8885",
//       "phone_mobile": "(203) 697-8886",
//       "fax": "(203) 697-8887",
//       "created_at": "2017-06-26T21:20:07Z",
//       "updated_at": "2017-06-26T21:27:07Z",
//       "client": {
//         "id": 5735774,
//         "name": "ABC Corp"
//       }
//     },
//     {
//       "id": 4706453,
//       "title": "Manager",
//       "first_name": "Richard",
//       "last_name": "Roe",
//       "email": "richardroe@example.com",
//       "phone_office": "(318) 515-5905",
//       "phone_mobile": "(318) 515-5906",
//       "fax": "(318) 515-5907",
//       "created_at": "2017-06-26T21:06:55Z",
//       "updated_at": "2017-06-26T21:27:20Z",
//       "client": {
//         "id": 5735776,
//         "name": "123 Industries"
//       }
//     }
//   ],
//   "per_page": 100,
//   "total_pages": 1,
//   "total_entries": 2,
//   "next_page": null,
//   "previous_page": null,
//   "page": 1,
//   "links": {
//     "first": "https://api.harvestapp.com/v2/contacts?page=1&per_page=100",
//     "next": null,
//     "previous": null,
//     "last": "https://api.harvestapp.com/v2/contacts?page=1&per_page=100"
//   }
// }

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

lnPer_page = loJResp.IntOf("per_page")
lnTotal_pages = loJResp.IntOf("total_pages")
lnTotal_entries = loJResp.IntOf("total_entries")
lcNext_page = loJResp.StringOf("next_page")
lcPrevious_page = loJResp.StringOf("previous_page")
lnPage = loJResp.IntOf("page")
lcLinksFirst = loJResp.StringOf("links.first")
lcLinksNext = loJResp.StringOf("links.next")
lcLinksPrevious = loJResp.StringOf("links.previous")
lcLinksLast = loJResp.StringOf("links.last")
i = 0
lnCount_i = loJResp.SizeOfArray("contacts")
do while i < lnCount_i
    loJResp.I = i
    lnId = loJResp.IntOf("contacts[i].id")
    lcTitle = loJResp.StringOf("contacts[i].title")
    lcFirst_name = loJResp.StringOf("contacts[i].first_name")
    lcLast_name = loJResp.StringOf("contacts[i].last_name")
    lcEmail = loJResp.StringOf("contacts[i].email")
    lcPhone_office = loJResp.StringOf("contacts[i].phone_office")
    lcPhone_mobile = loJResp.StringOf("contacts[i].phone_mobile")
    lcFax = loJResp.StringOf("contacts[i].fax")
    lcCreated_at = loJResp.StringOf("contacts[i].created_at")
    lcUpdated_at = loJResp.StringOf("contacts[i].updated_at")
    lnClientId = loJResp.IntOf("contacts[i].client.id")
    lcClientName = loJResp.StringOf("contacts[i].client.name")
    i = i + 1
enddo


release loHttp
release loSbResponseBody
release loJResp