Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Unicode C Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Unicode C) Shippo Validate Global Address

Demonstrates how to validate a global address.

For more information, see https://goshippo.com/docs/address-validation/

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <C_CkHttpW.h>
#include <C_CkHttpRequestW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkJsonObjectW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkHttpRequestW req;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *source;
    const wchar_t *v_type;
    const wchar_t *code;
    const wchar_t *text;
    const wchar_t *object_created;
    const wchar_t *object_updated;
    const wchar_t *object_id;
    BOOL is_complete;
    BOOL validation_resultsIs_valid;
    const wchar_t *object_owner;
    const wchar_t *name;
    const wchar_t *company;
    const wchar_t *street_no;
    const wchar_t *street1;
    const wchar_t *street2;
    const wchar_t *street3;
    const wchar_t *city;
    const wchar_t *state;
    const wchar_t *zip;
    const wchar_t *country;
    const wchar_t *longitude;
    const wchar_t *latitude;
    const wchar_t *phone;
    const wchar_t *email;
    const wchar_t *is_residential;
    const wchar_t *metadata;
    BOOL test;
    int i;
    int count_i;

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

    http = CkHttpW_Create();

    // Implements the following CURL command:

    // curl https://api.goshippo.com/addresses/ \
    //     -H "Authorization: ShippoToken <API_TOKEN>" \
    //     -d name="Shawn Ippotle" \
    //     -d company="Shippo" \
    //     -d street1="Kortrijksesteenweg 1005" \
    //     -d city="Gent" \
    //     -d zip=9000 \
    //     -d country="BE" \
    //     -d email="shippotle@goshippo.com"\
    //     -d validate=true

    req = CkHttpRequestW_Create();
    CkHttpRequestW_putHttpVerb(req,L"POST");
    CkHttpRequestW_putPath(req,L"/addresses/");
    CkHttpRequestW_putContentType(req,L"application/x-www-form-urlencoded");
    CkHttpRequestW_AddParam(req,L"name",L"Shawn Ippotle");
    CkHttpRequestW_AddParam(req,L"company",L"Shippo");
    CkHttpRequestW_AddParam(req,L"street1",L"Kortrijksesteenweg 1005");
    CkHttpRequestW_AddParam(req,L"city",L"Gent");
    CkHttpRequestW_AddParam(req,L"zip",L"9000");
    CkHttpRequestW_AddParam(req,L"country",L"BE");
    CkHttpRequestW_AddParam(req,L"email",L"shippotle@goshippo.com");
    CkHttpRequestW_AddParam(req,L"validate",L"true");

    CkHttpRequestW_AddHeader(req,L"Authorization",L"ShippoToken <API_TOKEN>");

    resp = CkHttpW_PostUrlEncoded(http,L"https://api.goshippo.com/addresses/",req);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkHttpRequestW_Dispose(req);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);
    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkHttpRequestW_Dispose(req);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

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

    // {
    //   "object_created": "2017-07-26T17:52:37.305Z",
    //   "object_updated": "2017-07-26T17:52:37.351Z",
    //   "object_id": "b7f9709df3914d1ca6efe4c30e7b0572",
    //   "is_complete": true,
    //   "validation_results": {
    //     "is_valid": true,
    //     "messages": [
    //       {
    //         "source": "Shippo Address Validator",
    //         "type": "address_correction",
    //         "code": "administrative_area_change",
    //         "text": "The administrative area (state or province) was added or changed."
    //       },
    //       {
    //         "source": "Shippo Address Validator",
    //         "code": "geocoded_rooftop",
    //         "text": "The record was geocoded down to rooftop level, meaning the point is within the property boundaries (most often the center)."
    //       },
    //       {
    //         "source": "Shippo Address Validator",
    //         "code": "premises_full",
    //         "text": "The address has been verified to the Premise (House or Building) Level, which is the highest level possible with the reference data."
    //       }
    //     ]
    //   },
    //   "object_owner": "hippo@goshippo.com",
    //   "name": "Hippo Shippo",
    //   "company": "Shippo",
    //   "street_no": "2",
    //   "street1": "Unter den Linden",
    //   "street2": "",
    //   "street3": "",
    //   "city": "Berlin",
    //   "state": "",
    //   "zip": "10117",
    //   "country": "DE",
    //   "longitude": "13.39751",
    //   "latitude": "52.51785",
    //   "phone": "14151234567",
    //   "email": "hippo@goshippo.com",
    //   "is_residential": null,
    //   "metadata": "",
    //   "test": false
    // }

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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    object_created = CkJsonObjectW_stringOf(jResp,L"object_created");
    object_updated = CkJsonObjectW_stringOf(jResp,L"object_updated");
    object_id = CkJsonObjectW_stringOf(jResp,L"object_id");
    is_complete = CkJsonObjectW_BoolOf(jResp,L"is_complete");
    validation_resultsIs_valid = CkJsonObjectW_BoolOf(jResp,L"validation_results.is_valid");
    object_owner = CkJsonObjectW_stringOf(jResp,L"object_owner");
    name = CkJsonObjectW_stringOf(jResp,L"name");
    company = CkJsonObjectW_stringOf(jResp,L"company");
    street_no = CkJsonObjectW_stringOf(jResp,L"street_no");
    street1 = CkJsonObjectW_stringOf(jResp,L"street1");
    street2 = CkJsonObjectW_stringOf(jResp,L"street2");
    street3 = CkJsonObjectW_stringOf(jResp,L"street3");
    city = CkJsonObjectW_stringOf(jResp,L"city");
    state = CkJsonObjectW_stringOf(jResp,L"state");
    zip = CkJsonObjectW_stringOf(jResp,L"zip");
    country = CkJsonObjectW_stringOf(jResp,L"country");
    longitude = CkJsonObjectW_stringOf(jResp,L"longitude");
    latitude = CkJsonObjectW_stringOf(jResp,L"latitude");
    phone = CkJsonObjectW_stringOf(jResp,L"phone");
    email = CkJsonObjectW_stringOf(jResp,L"email");
    is_residential = CkJsonObjectW_stringOf(jResp,L"is_residential");
    metadata = CkJsonObjectW_stringOf(jResp,L"metadata");
    test = CkJsonObjectW_BoolOf(jResp,L"test");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"validation_results.messages");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        source = CkJsonObjectW_stringOf(jResp,L"validation_results.messages[i].source");
        v_type = CkJsonObjectW_stringOf(jResp,L"validation_results.messages[i].type");
        code = CkJsonObjectW_stringOf(jResp,L"validation_results.messages[i].code");
        text = CkJsonObjectW_stringOf(jResp,L"validation_results.messages[i].text");
        i = i + 1;
    }



    CkHttpW_Dispose(http);
    CkHttpRequestW_Dispose(req);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.