Visual FoxPro
Visual FoxPro
SMSAPI - List Contacts
See more SMSAPI Examples
List ContactsChilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loHttp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL loDate_created
LOCAL loDate_updated
LOCAL lcId
LOCAL lcFirst_name
LOCAL lcLast_name
LOCAL lcPhone_number
LOCAL lcEmail
LOCAL lcGender
LOCAL lcCity
LOCAL lcCountry
LOCAL lcSource
LOCAL j
LOCAL lnCount_j
LOCAL lcName
LOCAL lcDescription
LOCAL lcCreated_by
LOCAL lcIdx
LOCAL lcContact_expire_after
LOCAL lcContacts_count
LOCAL lnSize
LOCAL i
LOCAL lnCount_i
lnSuccess = 0
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
* Implements the following CURL command:
* curl -X GET -H "Authorization: Bearer token_api_oauth" https://api.smsapi.com/contacts?phone_number=48500000000
* Use the following online tool to generate HTTP code from a CURL command
* Convert a cURL Command to HTTP Source Code
* Adds the "Authorization: Bearer token_api_oauth" header.
loHttp.AuthToken = "token_api_oauth"
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://api.smsapi.com/contacts?phone_number=48500000000",loSbResponseBody)
IF (lnSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loSbResponseBody
CANCEL
ENDIF
loJResp = CreateObject('Chilkat.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0
? "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
CANCEL
ENDIF
* Sample JSON response:
* (Sample code for parsing the JSON response is shown below)
* {
* "size": 1,
* "collection": [
* {
* "id": "5b83ba81a788494a0469490f",
* "first_name": "name",
* "last_name": "surname",
* "phone_number": "48500000000",
* "email": "bok@smsapi.com",
* "gender": "male",
* "city": "City",
* "country": "Poland",
* "source": "source",
* "date_created": "2018-08-27T10:46:57+02:00",
* "date_updated": "2018-08-27T10:46:57+02:00",
* "groups": [
* {
* "id": "59a3ca1fa78849062837cd0c",
* "name": "default",
* "date_created": "2017-08-28T09:45:35+02:00",
* "date_updated": "2017-08-28T09:45:35+02:00",
* "description": "",
* "created_by": "login",
* "idx": null,
* "contact_expire_after": null,
* "contacts_count": null
* }
* ]
* }
* ]
* }
* Sample code for parsing the JSON response...
* Use the following online tool to generate parsing code from sample JSON:
* Generate Parsing Code from JSON
loDate_created = CreateObject('Chilkat.DtObj')
loDate_updated = CreateObject('Chilkat.DtObj')
lnSize = loJResp.IntOf("size")
i = 0
lnCount_i = loJResp.SizeOfArray("collection")
DO WHILE i < lnCount_i
loJResp.I = i
lcId = loJResp.StringOf("collection[i].id")
lcFirst_name = loJResp.StringOf("collection[i].first_name")
lcLast_name = loJResp.StringOf("collection[i].last_name")
lcPhone_number = loJResp.StringOf("collection[i].phone_number")
lcEmail = loJResp.StringOf("collection[i].email")
lcGender = loJResp.StringOf("collection[i].gender")
lcCity = loJResp.StringOf("collection[i].city")
lcCountry = loJResp.StringOf("collection[i].country")
lcSource = loJResp.StringOf("collection[i].source")
loJResp.DtOf("collection[i].date_created",0,loDate_created)
loJResp.DtOf("collection[i].date_updated",0,loDate_updated)
j = 0
lnCount_j = loJResp.SizeOfArray("collection[i].groups")
DO WHILE j < lnCount_j
loJResp.J = j
lcId = loJResp.StringOf("collection[i].groups[j].id")
lcName = loJResp.StringOf("collection[i].groups[j].name")
loJResp.DtOf("collection[i].groups[j].date_created",0,loDate_created)
loJResp.DtOf("collection[i].groups[j].date_updated",0,loDate_updated)
lcDescription = loJResp.StringOf("collection[i].groups[j].description")
lcCreated_by = loJResp.StringOf("collection[i].groups[j].created_by")
lcIdx = loJResp.StringOf("collection[i].groups[j].idx")
lcContact_expire_after = loJResp.StringOf("collection[i].groups[j].contact_expire_after")
lcContacts_count = loJResp.StringOf("collection[i].groups[j].contacts_count")
j = j + 1
ENDDO
i = i + 1
ENDDO
RELEASE loHttp
RELEASE loSbResponseBody
RELEASE loJResp
RELEASE loDate_created
RELEASE loDate_updated