Sample code for 30+ languages & platforms
PowerBuilder

SMSAPI - List Contacts

See more SMSAPI Examples

List Contacts

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
oleobject loo_Date_created
oleobject loo_Date_updated
string ls_Id
string ls_First_name
string ls_Last_name
string ls_Phone_number
string ls_Email
string ls_Gender
string ls_City
string ls_Country
string ls_Source
integer j
integer li_Count_j
string ls_Name
string ls_Description
string ls_Created_by
string ls_Idx
string ls_Contact_expire_after
string ls_Contacts_count
integer li_Size
integer i
integer li_Count_i

li_Success = 0

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// 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.
loo_Http.AuthToken = "token_api_oauth"

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://api.smsapi.com/contacts?phone_number=48500000000",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

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

loo_Date_created = create oleobject
li_rc = loo_Date_created.ConnectToNewObject("Chilkat.DtObj")

loo_Date_updated = create oleobject
li_rc = loo_Date_updated.ConnectToNewObject("Chilkat.DtObj")

li_Size = loo_JResp.IntOf("size")
i = 0
li_Count_i = loo_JResp.SizeOfArray("collection")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("collection[i].id")
    ls_First_name = loo_JResp.StringOf("collection[i].first_name")
    ls_Last_name = loo_JResp.StringOf("collection[i].last_name")
    ls_Phone_number = loo_JResp.StringOf("collection[i].phone_number")
    ls_Email = loo_JResp.StringOf("collection[i].email")
    ls_Gender = loo_JResp.StringOf("collection[i].gender")
    ls_City = loo_JResp.StringOf("collection[i].city")
    ls_Country = loo_JResp.StringOf("collection[i].country")
    ls_Source = loo_JResp.StringOf("collection[i].source")
    loo_JResp.DtOf("collection[i].date_created",0,loo_Date_created)
    loo_JResp.DtOf("collection[i].date_updated",0,loo_Date_updated)
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("collection[i].groups")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Id = loo_JResp.StringOf("collection[i].groups[j].id")
        ls_Name = loo_JResp.StringOf("collection[i].groups[j].name")
        loo_JResp.DtOf("collection[i].groups[j].date_created",0,loo_Date_created)
        loo_JResp.DtOf("collection[i].groups[j].date_updated",0,loo_Date_updated)
        ls_Description = loo_JResp.StringOf("collection[i].groups[j].description")
        ls_Created_by = loo_JResp.StringOf("collection[i].groups[j].created_by")
        ls_Idx = loo_JResp.StringOf("collection[i].groups[j].idx")
        ls_Contact_expire_after = loo_JResp.StringOf("collection[i].groups[j].contact_expire_after")
        ls_Contacts_count = loo_JResp.StringOf("collection[i].groups[j].contacts_count")
        j = j + 1
    loop
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp
destroy loo_Date_created
destroy loo_Date_updated