Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) SMSAPI - Create a ContactCreate a Contact For more information, see https://www.smsapi.com/docs?shell#create-contact
integer li_rc oleobject loo_Http integer li_Success 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 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 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 // Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 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 = loo_Http.PostUrlEncoded("https://api.smsapi.com/contacts",loo_Req) if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Req return end if loo_SbResponseBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder") loo_Resp.GetBodySb(loo_SbResponseBody) loo_JResp = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 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_Resp destroy loo_Http destroy loo_Req destroy loo_SbResponseBody destroy loo_JResp return end if destroy loo_Resp // 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 // Use "Chilkat_9_5_0.DtObj" for versions of Chilkat < 10.0.0 li_rc = loo_Date_created.ConnectToNewObject("Chilkat.DtObj") loo_Date_updated = create oleobject // Use "Chilkat_9_5_0.DtObj" for versions of Chilkat < 10.0.0 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_SbResponseBody destroy loo_JResp destroy loo_Date_created destroy loo_Date_updated |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.