Chilkat Online Tools

unicodeC / PrestaShop Webservice Product Resource A-Z / 4 - Create product

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkXmlW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkXmlW xml;
    HCkStringBuilderW sbRequestBody;
    HCkHttpResponseW resp;

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

    http = CkHttpW_Create();

    CkHttpW_putBasicAuth(http,TRUE);
    CkHttpW_putLogin(http,L"{{webservice_key}}");
    CkHttpW_putPassword(http,L"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_brand><![CDATA[10]]></id_brand>
    //         <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[standard]]></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>
    //             <language id="2"><![CDATA[Description]]></language>
    //         </meta_description>
    //         <meta_keywords>
    //             <language id="1"/>
    //             <language id="2"/>
    //         </meta_keywords>
    //         <meta_title>
    //             <language id="1"/>
    //             <language id="2"/>
    //         </meta_title>
    //         <link_rewrite>
    //             <language id="1"/>
    //             <language id="2"/>
    //         </link_rewrite>
    //         <name>
    //             <language id="1"><![CDATA[Product Name]]></language>
    //             <language id="2"><![CDATA[Product Name]]></language>
    //         </name>
    //         <description>
    //             <language id="1"><![CDATA[Description]]></language>
    //             <language id="2"><![CDATA[Description]]></language>
    //         </description>
    //         <description_short>
    //             <language id="1"/>
    //             <language id="2"/>
    //         </description_short>
    //         <associations>
    //             <categories>
    //                 <category>
    //                     <id><![CDATA[1]]></id>
    //                 </category>
    //             </categories>
    //         </associations>
    //     </product>
    // </prestashop>
    // 

    xml = CkXmlW_Create();
    CkXmlW_putTag(xml,L"prestashop");
    CkXmlW_AddAttribute(xml,L"xmlns:xlink",L"http://www.w3.org/1999/xlink");
    CkXmlW_UpdateChildContentInt(xml,L"product|id_manufacturer",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|id_supplier",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|id_brand",10);
    CkXmlW_UpdateChildContentInt(xml,L"product|id_category_default",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|new",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|id_default_combination",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|id_tax_rules_group",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|type",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|id_shop_default",1);
    CkXmlW_UpdateChildContentInt(xml,L"product|reference",123456);
    CkXmlW_UpdateChildContent(xml,L"product|supplier_reference",L"ABCDEF");
    CkXmlW_UpdateChildContent(xml,L"product|ean13",L"1231231231231");
    CkXmlW_UpdateChildContentInt(xml,L"product|state",1);
    CkXmlW_UpdateChildContent(xml,L"product|product_type",L"standard");
    CkXmlW_UpdateChildContent(xml,L"product|price",L"123.45");
    CkXmlW_UpdateChildContent(xml,L"product|unit_price",L"123.45");
    CkXmlW_UpdateChildContentInt(xml,L"product|active",1);
    CkXmlW_UpdateAttrAt(xml,L"product|meta_description|language",TRUE,L"id",L"1");
    CkXmlW_UpdateChildContent(xml,L"product|meta_description|language",L"Description");
    CkXmlW_UpdateAttrAt(xml,L"product|meta_description|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateChildContent(xml,L"product|meta_description|language[1]",L"Description");
    CkXmlW_UpdateAttrAt(xml,L"product|meta_keywords|language",TRUE,L"id",L"1");
    CkXmlW_UpdateAttrAt(xml,L"product|meta_keywords|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateAttrAt(xml,L"product|meta_title|language",TRUE,L"id",L"1");
    CkXmlW_UpdateAttrAt(xml,L"product|meta_title|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateAttrAt(xml,L"product|link_rewrite|language",TRUE,L"id",L"1");
    CkXmlW_UpdateAttrAt(xml,L"product|link_rewrite|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateAttrAt(xml,L"product|name|language",TRUE,L"id",L"1");
    CkXmlW_UpdateChildContent(xml,L"product|name|language",L"Product Name");
    CkXmlW_UpdateAttrAt(xml,L"product|name|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateChildContent(xml,L"product|name|language[1]",L"Product Name");
    CkXmlW_UpdateAttrAt(xml,L"product|description|language",TRUE,L"id",L"1");
    CkXmlW_UpdateChildContent(xml,L"product|description|language",L"Description");
    CkXmlW_UpdateAttrAt(xml,L"product|description|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateChildContent(xml,L"product|description|language[1]",L"Description");
    CkXmlW_UpdateAttrAt(xml,L"product|description_short|language",TRUE,L"id",L"1");
    CkXmlW_UpdateAttrAt(xml,L"product|description_short|language[1]",TRUE,L"id",L"2");
    CkXmlW_UpdateChildContentInt(xml,L"product|associations|categories|category|id",1);

    sbRequestBody = CkStringBuilderW_Create();
    CkXmlW_GetXmlSb(xml,sbRequestBody);

    resp = CkHttpW_PTextSb(http,L"POST",L"https://localhost:8080/api/products",sbRequestBody,L"utf-8",L"application/xml",FALSE,FALSE);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkXmlW_Dispose(xml);
        CkStringBuilderW_Dispose(sbRequestBody);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkXmlW_Dispose(xml);
    CkStringBuilderW_Dispose(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_brand><![CDATA[10]]></id_brand>
	<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[standard]]></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><language id="2"><![CDATA[Description]]></language></meta_description>
	<meta_keywords><language id="1"><![CDATA[]]></language><language id="2"><![CDATA[]]></language></meta_keywords>
	<meta_title><language id="1"><![CDATA[]]></language><language id="2"><![CDATA[]]></language></meta_title>
	<link_rewrite><language id="1"><![CDATA[]]></language><language id="2"><![CDATA[]]></language></link_rewrite>
	<name><language id="1"><![CDATA[Product Name]]></language><language id="2"><![CDATA[Product Name]]></language></name>
	<description><language id="1"><![CDATA[Description]]></language><language id="2"><![CDATA[Description]]></language></description>
	<description_short><language id="1"><![CDATA[]]></language><language id="2"><![CDATA[]]></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": "4 - Create 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\t<id_manufacturer><![CDATA[1]]></id_manufacturer>\n\t<id_supplier><![CDATA[1]]></id_supplier>\n    <id_brand><![CDATA[10]]></id_brand>\n\t<id_category_default><![CDATA[1]]></id_category_default>\n\t<new><![CDATA[1]]></new>\n\t<id_default_combination><![CDATA[1]]></id_default_combination>\n\t<id_tax_rules_group><![CDATA[1]]></id_tax_rules_group>\n\t<type><![CDATA[1]]></type>\n\t<id_shop_default><![CDATA[1]]></id_shop_default>\n\t<reference><![CDATA[123456]]></reference>\n\t<supplier_reference><![CDATA[ABCDEF]]></supplier_reference>\n\t<ean13><![CDATA[1231231231231]]></ean13>\n\t<state><![CDATA[1]]></state>\n\t<product_type><![CDATA[standard]]></product_type>\n\t<price><![CDATA[123.45]]></price>\n\t<unit_price><![CDATA[123.45]]></unit_price>\n\t<active><![CDATA[1]]></active>\n\t<meta_description><language id=\"1\"><![CDATA[Description]]></language><language id=\"2\"><![CDATA[Description]]></language></meta_description>\n\t<meta_keywords><language id=\"1\"><![CDATA[]]></language><language id=\"2\"><![CDATA[]]></language></meta_keywords>\n\t<meta_title><language id=\"1\"><![CDATA[]]></language><language id=\"2\"><![CDATA[]]></language></meta_title>\n\t<link_rewrite><language id=\"1\"><![CDATA[]]></language><language id=\"2\"><![CDATA[]]></language></link_rewrite>\n\t<name><language id=\"1\"><![CDATA[Product Name]]></language><language id=\"2\"><![CDATA[Product Name]]></language></name>\n\t<description><language id=\"1\"><![CDATA[Description]]></language><language id=\"2\"><![CDATA[Description]]></language></description>\n\t<description_short><language id=\"1\"><![CDATA[]]></language><language id=\"2\"><![CDATA[]]></language></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": [
  ]
}