Sample code for 30+ languages & platforms
PowerBuilder

SMSAPI - Create a Contact

See more SMSAPI Examples

Create a Contact

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_Req
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
oleobject loo_Date_created
oleobject loo_Date_updated
string ls_Name
string ls_Created_by
string ls_Idx
string ls_Contact_expire_after
string ls_Contacts_count
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_Description
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 POST https://api.smsapi.com/contacts -H "Authorization: Bearer token_api_oauth" \
// -d "phone_number=48500000000&email=bok@smsapi.com&first_name=Name&last_name=Last_name&gender=gender&description=description&city=city&groups=default"

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

loo_Req = create oleobject
li_rc = loo_Req.ConnectToNewObject("Chilkat.HttpRequest")

loo_Req.HttpVerb = "POST"
loo_Req.Path = "/contacts"
loo_Req.ContentType = "application/x-www-form-urlencoded"
loo_Req.AddParam("phone_number","48500000000")
loo_Req.AddParam("email","bok@smsapi.com")
loo_Req.AddParam("first_name","Name")
loo_Req.AddParam("last_name","Last_name")
loo_Req.AddParam("gender","gender")
loo_Req.AddParam("description","description")
loo_Req.AddParam("city","city")
loo_Req.AddParam("groups","default")

loo_Req.AddHeader("Authorization","Bearer token_api_oauth")

loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpReq("https://api.smsapi.com/contacts",loo_Req,loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Req
    destroy loo_Resp
    return
end if

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

loo_Resp.GetBodySb(loo_SbResponseBody)
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_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_Req
    destroy loo_Resp
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

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

// {
//   "id": "5b802315a788494a04690d1d",
//   "first_name": "string",
//   "last_name": "string",
//   "phone_number": "48500000000",
//   "email": "bok@smsapi.com",
//   "gender": "gender",
//   "city": "city",
//   "date_created": "2018-08-24T17:24:05+02:00",
//   "date_updated": "2018-08-24T17:24:05+02:00",
//   "description": "description",
//   "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": "username",
//       "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")

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


destroy loo_Http
destroy loo_Req
destroy loo_Resp
destroy loo_SbResponseBody
destroy loo_JResp
destroy loo_Date_created
destroy loo_Date_updated