Sample code for 30+ languages & platforms
DataFlex

Square API - Retrieve Catalog Object

See more Square Examples

Returns a single CatalogItem as a CatalogObject based on the provided ID.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoHttp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sStrVal
    String sV_type
    String sId
    String sUpdated_at
    Integer iVersion
    Boolean iIs_deleted
    Boolean iPresent_at_all_locations
    String sItem_variation_dataItem_id
    String sItem_variation_dataName
    Integer iItem_variation_dataOrdinal
    String sItem_variation_dataPricing_type
    Integer iItem_variation_dataPrice_moneyAmount
    String sItem_variation_dataPrice_moneyCurrency
    String sCategory_dataName
    String sTax_dataName
    String sTax_dataCalculation_phase
    String sTax_dataInclusion_type
    String sTax_dataPercentage
    Boolean iTax_dataEnabled
    String sObjectType
    String sObjectId
    String sObjectUpdated_at
    Integer iObjectVersion
    Boolean iObjectIs_deleted
    Boolean iObjectPresent_at_all_locations
    String sObjectItem_dataName
    String sObjectItem_dataDescription
    String sObjectItem_dataCategory_id
    Integer i
    Integer iCount_i
    String sTemp1

    Move False To iSuccess

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // Implements the following CURL command:

    // curl https://connect.squareup.com/v2/catalog/object/W62UWFY35CWMYGVWK6TWJDNI?include_related_objects=true 
    //   -H 'Square-Version: 2020-07-22' 
    //   -H 'Authorization: Bearer ACCESS_TOKEN' 
    //   -H 'Content-Type: application/json'

    // 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 ACCESS_TOKEN" header.
    Set ComAuthToken Of hoHttp To "ACCESS_TOKEN"
    Send ComSetRequestHeader To hoHttp "Square-Version" "2020-07-22"
    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"

    Get ComSetUrlVar Of hoHttp "id" "2PTZYUOFGGDMT75UZLHQAPAC" To iSuccess

    // This example uses the sandbox: connect.squareupsandbox.com
    // Production should use connect.squareup.com
    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComQuickGetSb Of hoHttp "https://connect.squareupsandbox.com/v2/catalog/object/{$id}?include_related_objects=true" vSbResponseBody To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComLastStatus Of hoHttp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComLastHeader Of hoHttp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

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

    // {
    //   "object": {
    //     "type": "ITEM",
    //     "id": "W62UWFY35CWMYGVWK6TWJDNI",
    //     "updated_at": "2016-11-16T22:25:24.878Z",
    //     "version": 1479335124878,
    //     "is_deleted": false,
    //     "present_at_all_locations": true,
    //     "item_data": {
    //       "name": "Tea",
    //       "description": "Hot Leaf Juice",
    //       "category_id": "BJNQCF2FJ6S6UIDT65ABHLRX",
    //       "tax_ids": [
    //         "HURXQOOAIC4IZSI2BEXQRYFY"
    //       ],
    //       "variations": [
    //         {
    //           "type": "ITEM_VARIATION",
    //           "id": "2TZFAOHWGG7PAK2QEXWYPZSP",
    //           "updated_at": "2016-11-16T22:25:24.878Z",
    //           "version": 1479335124878,
    //           "is_deleted": false,
    //           "present_at_all_locations": true,
    //           "item_variation_data": {
    //             "item_id": "W62UWFY35CWMYGVWK6TWJDNI",
    //             "name": "Mug",
    //             "ordinal": 0,
    //             "pricing_type": "FIXED_PRICING",
    //             "price_money": {
    //               "amount": 150,
    //               "currency": "USD"
    //             }
    //           }
    //         }
    //       ]
    //     }
    //   },
    //   "related_objects": [
    //     {
    //       "type": "CATEGORY",
    //       "id": "BJNQCF2FJ6S6UIDT65ABHLRX",
    //       "updated_at": "2016-11-16T22:25:24.878Z",
    //       "version": 1479335124878,
    //       "is_deleted": false,
    //       "present_at_all_locations": true,
    //       "category_data": {
    //         "name": "Beverages"
    //       }
    //     },
    //     {
    //       "type": "TAX",
    //       "id": "HURXQOOAIC4IZSI2BEXQRYFY",
    //       "updated_at": "2016-11-16T22:25:24.878Z",
    //       "version": 1479335124878,
    //       "is_deleted": false,
    //       "present_at_all_locations": true,
    //       "tax_data": {
    //         "name": "Sales Tax",
    //         "calculation_phase": "TAX_SUBTOTAL_PHASE",
    //         "inclusion_type": "ADDITIVE",
    //         "percentage": "5.0",
    //         "enabled": true
    //       }
    //     }
    //   ]
    // }

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

    Get ComStringOf Of hoJResp "object.type" To sObjectType
    Get ComStringOf Of hoJResp "object.id" To sObjectId
    Get ComStringOf Of hoJResp "object.updated_at" To sObjectUpdated_at
    Get ComIntOf Of hoJResp "object.version" To iObjectVersion
    Get ComBoolOf Of hoJResp "object.is_deleted" To iObjectIs_deleted
    Get ComBoolOf Of hoJResp "object.present_at_all_locations" To iObjectPresent_at_all_locations
    Get ComStringOf Of hoJResp "object.item_data.name" To sObjectItem_dataName
    Get ComStringOf Of hoJResp "object.item_data.description" To sObjectItem_dataDescription
    Get ComStringOf Of hoJResp "object.item_data.category_id" To sObjectItem_dataCategory_id
    Move 0 To i
    Get ComSizeOfArray Of hoJResp "object.item_data.tax_ids" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "object.item_data.tax_ids[i]" To sStrVal
        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "object.item_data.variations" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "object.item_data.variations[i].type" To sV_type
        Get ComStringOf Of hoJResp "object.item_data.variations[i].id" To sId
        Get ComStringOf Of hoJResp "object.item_data.variations[i].updated_at" To sUpdated_at
        Get ComIntOf Of hoJResp "object.item_data.variations[i].version" To iVersion
        Get ComBoolOf Of hoJResp "object.item_data.variations[i].is_deleted" To iIs_deleted
        Get ComBoolOf Of hoJResp "object.item_data.variations[i].present_at_all_locations" To iPresent_at_all_locations
        Get ComStringOf Of hoJResp "object.item_data.variations[i].item_variation_data.item_id" To sItem_variation_dataItem_id
        Get ComStringOf Of hoJResp "object.item_data.variations[i].item_variation_data.name" To sItem_variation_dataName
        Get ComIntOf Of hoJResp "object.item_data.variations[i].item_variation_data.ordinal" To iItem_variation_dataOrdinal
        Get ComStringOf Of hoJResp "object.item_data.variations[i].item_variation_data.pricing_type" To sItem_variation_dataPricing_type
        Get ComIntOf Of hoJResp "object.item_data.variations[i].item_variation_data.price_money.amount" To iItem_variation_dataPrice_moneyAmount
        Get ComStringOf Of hoJResp "object.item_data.variations[i].item_variation_data.price_money.currency" To sItem_variation_dataPrice_moneyCurrency
        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "related_objects" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "related_objects[i].type" To sV_type
        Get ComStringOf Of hoJResp "related_objects[i].id" To sId
        Get ComStringOf Of hoJResp "related_objects[i].updated_at" To sUpdated_at
        Get ComIntOf Of hoJResp "related_objects[i].version" To iVersion
        Get ComBoolOf Of hoJResp "related_objects[i].is_deleted" To iIs_deleted
        Get ComBoolOf Of hoJResp "related_objects[i].present_at_all_locations" To iPresent_at_all_locations
        Get ComStringOf Of hoJResp "related_objects[i].category_data.name" To sCategory_dataName
        Get ComStringOf Of hoJResp "related_objects[i].tax_data.name" To sTax_dataName
        Get ComStringOf Of hoJResp "related_objects[i].tax_data.calculation_phase" To sTax_dataCalculation_phase
        Get ComStringOf Of hoJResp "related_objects[i].tax_data.inclusion_type" To sTax_dataInclusion_type
        Get ComStringOf Of hoJResp "related_objects[i].tax_data.percentage" To sTax_dataPercentage
        Get ComBoolOf Of hoJResp "related_objects[i].tax_data.enabled" To iTax_dataEnabled
        Move (i + 1) To i
    Loop



End_Procedure