Chilkat Online Tools

PowerBuilder / PrestaShop Webservice Product Resource A-Z / 8 - Create Combination Product

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Xml
oleobject loo_SbRequestBody
oleobject loo_Resp

// 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_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.BasicAuth = 1
loo_Http.Login = "{{webservice_key}}"
loo_Http.Password = "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_manufacturer><![CDATA[1]]></id_manufacturer>
//         <id_supplier><![CDATA[1]]></id_supplier>
//         <id_category_default><![CDATA[1]]></id_category_default>
//         <new><![CDATA[1]]></new>
//         <id_default_combination><![CDATA[1]]></id_default_combination>
//         <id_tax_rules_group><![CDATA[1]]></id_tax_rules_group>
//         <type><![CDATA[1]]></type>
//         <id_shop_default><![CDATA[1]]></id_shop_default>
//         <reference><![CDATA[123456]]></reference>
//         <supplier_reference><![CDATA[ABCDEF]]></supplier_reference>
//         <ean13><![CDATA[1231231231231]]></ean13>
//         <state><![CDATA[1]]></state>
//         <product_type><![CDATA[combinations]]></product_type>
//         <price><![CDATA[123.45]]></price>
//         <unit_price><![CDATA[123.45]]></unit_price>
//         <active><![CDATA[1]]></active>
//         <meta_description>
//             <language id="1"><![CDATA[Description]]></language>
//         </meta_description>
//         <meta_keywords>
//             <language id="1"><![CDATA[Keywords]]></language>
//         </meta_keywords>
//         <meta_title>
//             <language id="1"><![CDATA[My Title for SEO]]></language>
//         </meta_title>
//         <link_rewrite>
//             <language id="1"><![CDATA[awesome-product]]></language>
//         </link_rewrite>
//         <name>
//             <language id="1"><![CDATA[My awesome Product with combinations]]></language>
//         </name>
//         <description>
//             <language id="1"><![CDATA[Description]]></language>
//         </description>
//         <description_short>
//             <language id="1"><![CDATA[Short description]]></language>
//         </description_short>
//         <associations>
//             <categories>
//                 <category>
//                     <id><![CDATA[1]]></id>
//                 </category>
//             </categories>
//         </associations>
//     </product>
// </prestashop>
// 

loo_Xml = create oleobject
li_rc = loo_Xml.ConnectToNewObject("Chilkat_9_5_0.Xml")

loo_Xml.Tag = "prestashop"
loo_Xml.AddAttribute("xmlns:xlink","http://www.w3.org/1999/xlink")
loo_Xml.UpdateChildContentInt("product|id_manufacturer",1)
loo_Xml.UpdateChildContentInt("product|id_supplier",1)
loo_Xml.UpdateChildContentInt("product|id_category_default",1)
loo_Xml.UpdateChildContentInt("product|new",1)
loo_Xml.UpdateChildContentInt("product|id_default_combination",1)
loo_Xml.UpdateChildContentInt("product|id_tax_rules_group",1)
loo_Xml.UpdateChildContentInt("product|type",1)
loo_Xml.UpdateChildContentInt("product|id_shop_default",1)
loo_Xml.UpdateChildContentInt("product|reference",123456)
loo_Xml.UpdateChildContent("product|supplier_reference","ABCDEF")
loo_Xml.UpdateChildContent("product|ean13","1231231231231")
loo_Xml.UpdateChildContentInt("product|state",1)
loo_Xml.UpdateChildContent("product|product_type","combinations")
loo_Xml.UpdateChildContent("product|price","123.45")
loo_Xml.UpdateChildContent("product|unit_price","123.45")
loo_Xml.UpdateChildContentInt("product|active",1)
loo_Xml.UpdateAttrAt("product|meta_description|language",1,"id","1")
loo_Xml.UpdateChildContent("product|meta_description|language","Description")
loo_Xml.UpdateAttrAt("product|meta_keywords|language",1,"id","1")
loo_Xml.UpdateChildContent("product|meta_keywords|language","Keywords")
loo_Xml.UpdateAttrAt("product|meta_title|language",1,"id","1")
loo_Xml.UpdateChildContent("product|meta_title|language","My Title for SEO")
loo_Xml.UpdateAttrAt("product|link_rewrite|language",1,"id","1")
loo_Xml.UpdateChildContent("product|link_rewrite|language","awesome-product")
loo_Xml.UpdateAttrAt("product|name|language",1,"id","1")
loo_Xml.UpdateChildContent("product|name|language","My awesome Product with combinations")
loo_Xml.UpdateAttrAt("product|description|language",1,"id","1")
loo_Xml.UpdateChildContent("product|description|language","Description")
loo_Xml.UpdateAttrAt("product|description_short|language",1,"id","1")
loo_Xml.UpdateChildContent("product|description_short|language","Short description")
loo_Xml.UpdateChildContentInt("product|associations|categories|category|id",1)

loo_SbRequestBody = create oleobject
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Xml.GetXmlSb(loo_SbRequestBody)

loo_Resp = loo_Http.PTextSb("POST","https://localhost:8080/api/products",loo_SbRequestBody,"utf-8","application/xml",0,0)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Xml
    destroy loo_SbRequestBody
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_Xml
destroy loo_SbRequestBody

Curl Command

curl -X POST
	-u '{{webservice_key}}:password'
	-d '<?xml version="1.0" encoding="UTF-8"?>
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
    <product>
        <id_manufacturer><![CDATA[1]]></id_manufacturer>
        <id_supplier><![CDATA[1]]></id_supplier>
        <id_category_default><![CDATA[1]]></id_category_default>
        <new><![CDATA[1]]></new>
        <id_default_combination><![CDATA[1]]></id_default_combination>
        <id_tax_rules_group><![CDATA[1]]></id_tax_rules_group>
        <type><![CDATA[1]]></type>
        <id_shop_default><![CDATA[1]]></id_shop_default>
        <reference><![CDATA[123456]]></reference>
        <supplier_reference><![CDATA[ABCDEF]]></supplier_reference>
        <ean13><![CDATA[1231231231231]]></ean13>
        <state><![CDATA[1]]></state>
        <product_type><![CDATA[combinations]]></product_type>
        <price><![CDATA[123.45]]></price>
        <unit_price><![CDATA[123.45]]></unit_price>
        <active><![CDATA[1]]></active>
        <meta_description>
            <language id="1"><![CDATA[Description]]></language>
        </meta_description>
        <meta_keywords>
            <language id="1"><![CDATA[Keywords]]></language>
        </meta_keywords>
        <meta_title>
            <language id="1"><![CDATA[My Title for SEO]]></language>
        </meta_title>
        <link_rewrite>
            <language id="1"><![CDATA[awesome-product]]></language>
        </link_rewrite>
        <name>
            <language id="1"><![CDATA[My awesome Product with combinations]]></language>
        </name>
        <description>
            <language id="1"><![CDATA[Description]]></language>
        </description>
        <description_short>
            <language id="1"><![CDATA[Short description]]></language>
        </description_short>
        <associations>
            <categories>
                <category>
                    <id><![CDATA[1]]></id>
                </category>
            </categories>
        </associations>
    </product>
</prestashop>'
https://localhost:8080/api/products

Postman Collection Item JSON

{
  "name": "8 - Create Combination Product",
  "request": {
    "method": "POST",
    "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        <id_manufacturer><![CDATA[1]]></id_manufacturer>\n        <id_supplier><![CDATA[1]]></id_supplier>\n        <id_category_default><![CDATA[1]]></id_category_default>\n        <new><![CDATA[1]]></new>\n        <id_default_combination><![CDATA[1]]></id_default_combination>\n        <id_tax_rules_group><![CDATA[1]]></id_tax_rules_group>\n        <type><![CDATA[1]]></type>\n        <id_shop_default><![CDATA[1]]></id_shop_default>\n        <reference><![CDATA[123456]]></reference>\n        <supplier_reference><![CDATA[ABCDEF]]></supplier_reference>\n        <ean13><![CDATA[1231231231231]]></ean13>\n        <state><![CDATA[1]]></state>\n        <product_type><![CDATA[combinations]]></product_type>\n        <price><![CDATA[123.45]]></price>\n        <unit_price><![CDATA[123.45]]></unit_price>\n        <active><![CDATA[1]]></active>\n        <meta_description>\n            <language id=\"1\"><![CDATA[Description]]></language>\n        </meta_description>\n        <meta_keywords>\n            <language id=\"1\"><![CDATA[Keywords]]></language>\n        </meta_keywords>\n        <meta_title>\n            <language id=\"1\"><![CDATA[My Title for SEO]]></language>\n        </meta_title>\n        <link_rewrite>\n            <language id=\"1\"><![CDATA[awesome-product]]></language>\n        </link_rewrite>\n        <name>\n            <language id=\"1\"><![CDATA[My awesome Product with combinations]]></language>\n        </name>\n        <description>\n            <language id=\"1\"><![CDATA[Description]]></language>\n        </description>\n        <description_short>\n            <language id=\"1\"><![CDATA[Short description]]></language>\n        </description_short>\n        <associations>\n            <categories>\n                <category>\n                    <id><![CDATA[1]]></id>\n                </category>\n            </categories>\n        </associations>\n    </product>\n</prestashop>",
      "options": {
        "raw": {
          "language": "xml"
        }
      }
    },
    "url": {
      "raw": "{{webservice_url}}/api/products",
      "host": [
        "{{webservice_url}}"
      ],
      "path": [
        "api",
        "products"
      ]
    }
  },
  "response": [
  ]
}