Chilkat Online Tools

DataFlex / PrestaShop Webservice Product Resource A-Z / 7 - Update multi-lang fields

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Handle hoXml
    Variant vSbRequestBody
    Handle hoSbRequestBody
    Variant vResp
    Handle hoResp
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    Set ComBasicAuth Of hoHttp To True
    Set ComLogin Of hoHttp To "{{webservice_key}}"
    Set ComPassword Of hoHttp To "password"

    // Use this online tool to generate code from sample XML: Generate Code to Create XML

    // The following XML is sent in the request body.

    // <?xml version="1.0" encoding="UTF-8"?>
    // <prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    //     <product>
    //         <id><![CDATA[{{product_id}}]]></id>
    //         <meta_description>
    //             <language id="1"><![CDATA[Meta English description]]></language>
    //             <language id="2"><![CDATA[Description meta en français]]></language>
    //         </meta_description>
    //         <meta_keywords>
    //             <language id="1"><![CDATA[EN keyworkds]]></language>
    //             <language id="2"><![CDATA[Mots clés FR]]></language>
    //         </meta_keywords>
    //         <meta_title>
    //             <language id="1"><![CDATA[English Title]]></language>
    //             <language id="2"><![CDATA[Titre en Francais]]></language>
    //         </meta_title>
    //         <link_rewrite>
    //             <language id="1"><![CDATA[english-title]]></language>
    //             <language id="2"><![CDATA[titre-francais]]></language>
    //         </link_rewrite>
    //         <name>
    //             <language id="1"><![CDATA[Product name]]></language>
    //             <language id="2"><![CDATA[Nom du produit]]></language>
    //         </name>
    //         <description>
    //             <language id="1"><![CDATA[English Description]]></language>
    //             <language id="2"><![CDATA[Description en français]]></language>
    //         </description>
    //         <description_short>
    //             <language id="1"><![CDATA[Short English description]]></language>
    //             <language id="2"><![CDATA[Description courte en français]]></language>
    //         </description_short>
    //     </product>
    // </prestashop>
    // 

    Get Create (RefClass(cComChilkatXml)) To hoXml
    If (Not(IsComObjectCreated(hoXml))) Begin
        Send CreateComObject of hoXml
    End
    Set ComTag Of hoXml To "prestashop"
    Get ComAddAttribute Of hoXml "xmlns:xlink" "http://www.w3.org/1999/xlink" To iSuccess
    Send ComUpdateChildContent To hoXml "product|id" "{{product_id}}"
    Get ComUpdateAttrAt Of hoXml "product|meta_description|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|meta_description|language" "Meta English description"
    Get ComUpdateAttrAt Of hoXml "product|meta_description|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|meta_description|language[1]" "Description meta en français"
    Get ComUpdateAttrAt Of hoXml "product|meta_keywords|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|meta_keywords|language" "EN keyworkds"
    Get ComUpdateAttrAt Of hoXml "product|meta_keywords|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|meta_keywords|language[1]" "Mots clés FR"
    Get ComUpdateAttrAt Of hoXml "product|meta_title|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|meta_title|language" "English Title"
    Get ComUpdateAttrAt Of hoXml "product|meta_title|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|meta_title|language[1]" "Titre en Francais"
    Get ComUpdateAttrAt Of hoXml "product|link_rewrite|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|link_rewrite|language" "english-title"
    Get ComUpdateAttrAt Of hoXml "product|link_rewrite|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|link_rewrite|language[1]" "titre-francais"
    Get ComUpdateAttrAt Of hoXml "product|name|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|name|language" "Product name"
    Get ComUpdateAttrAt Of hoXml "product|name|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|name|language[1]" "Nom du produit"
    Get ComUpdateAttrAt Of hoXml "product|description|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|description|language" "English Description"
    Get ComUpdateAttrAt Of hoXml "product|description|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|description|language[1]" "Description en français"
    Get ComUpdateAttrAt Of hoXml "product|description_short|language" True "id" "1" To iSuccess
    Send ComUpdateChildContent To hoXml "product|description_short|language" "Short English description"
    Get ComUpdateAttrAt Of hoXml "product|description_short|language[1]" True "id" "2" To iSuccess
    Send ComUpdateChildContent To hoXml "product|description_short|language[1]" "Description courte en français"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbRequestBody
    If (Not(IsComObjectCreated(hoSbRequestBody))) Begin
        Send CreateComObject of hoSbRequestBody
    End
    Get pvComObject of hoSbRequestBody to vSbRequestBody
    Get ComGetXmlSb Of hoXml vSbRequestBody To iSuccess

    Get pvComObject of hoSbRequestBody to vSbRequestBody
    Get ComPTextSb Of hoHttp "PATCH" "https://localhost:8080/api/products/1" vSbRequestBody "utf-8" "application/xml" False False To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln sTemp1
    Send Destroy of hoResp


End_Procedure

Curl Command

curl -X PATCH
	-u '{{webservice_key}}:password'
	-d '<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
<product>
	<id><![CDATA[{{product_id}}]]></id>
	<meta_description>
        <language id="1"><![CDATA[Meta English description]]></language>
        <language id="2"><![CDATA[Description meta en français]]></language>
    </meta_description>
	<meta_keywords>
        <language id="1"><![CDATA[EN keyworkds]]></language>
        <language id="2"><![CDATA[Mots clés FR]]></language>
    </meta_keywords>
	<meta_title>    
        <language id="1"><![CDATA[English Title]]></language>
        <language id="2"><![CDATA[Titre en Francais]]></language>
    </meta_title>
	<link_rewrite>
        <language id="1"><![CDATA[english-title]]></language>
        <language id="2"><![CDATA[titre-francais]]></language>
    </link_rewrite>
	<name>
        <language id="1"><![CDATA[Product name]]></language>
        <language id="2"><![CDATA[Nom du produit]]></language>
    </name>
	<description>
        <language id="1"><![CDATA[English Description]]></language>
        <language id="2"><![CDATA[Description en français]]></language>
    </description>
	<description_short>
        <language id="1"><![CDATA[Short English description]]></language>
        <language id="2"><![CDATA[Description courte en français]]></language>
    </description_short>
</product>
</prestashop>'
https://localhost:8080/api/products/1

Postman Collection Item JSON

{
  "name": "7 - Update multi-lang fields",
  "request": {
    "method": "PATCH",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<prestashop xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n<product>\n\t<id><![CDATA[{{product_id}}]]></id>\n\t<meta_description>\n        <language id=\"1\"><![CDATA[Meta English description]]></language>\n        <language id=\"2\"><![CDATA[Description meta en français]]></language>\n    </meta_description>\n\t<meta_keywords>\n        <language id=\"1\"><![CDATA[EN keyworkds]]></language>\n        <language id=\"2\"><![CDATA[Mots clés FR]]></language>\n    </meta_keywords>\n\t<meta_title>    \n        <language id=\"1\"><![CDATA[English Title]]></language>\n        <language id=\"2\"><![CDATA[Titre en Francais]]></language>\n    </meta_title>\n\t<link_rewrite>\n        <language id=\"1\"><![CDATA[english-title]]></language>\n        <language id=\"2\"><![CDATA[titre-francais]]></language>\n    </link_rewrite>\n\t<name>\n        <language id=\"1\"><![CDATA[Product name]]></language>\n        <language id=\"2\"><![CDATA[Nom du produit]]></language>\n    </name>\n\t<description>\n        <language id=\"1\"><![CDATA[English Description]]></language>\n        <language id=\"2\"><![CDATA[Description en français]]></language>\n    </description>\n\t<description_short>\n        <language id=\"1\"><![CDATA[Short English description]]></language>\n        <language id=\"2\"><![CDATA[Description courte en français]]></language>\n    </description_short>\n</product>\n</prestashop>",
      "options": {
        "raw": {
          "language": "xml"
        }
      }
    },
    "url": {
      "raw": "{{webservice_url}}/api/products/{{product_id}}",
      "host": [
        "{{webservice_url}}"
      ],
      "path": [
        "api",
        "products",
        "{{product_id}}"
      ]
    }
  },
  "response": [
  ]
}