Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.
You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page
The creation workflow is a bit more complex than reading some data from the API, mainly because we rarely manage data via XML format. In most use cases the user is presented with a human understandable component, like a form, and the data entered is then processed. Besides we need to make sure that the XML sent to the webservice is understandable and complete.
As we explained in a previous tutorial the webservice provides two resource schemas. For creation we are going to use the blank schema which is an empty representation of a resource. This empty XML will be filled with our data and then sent to the webservice using the add()
method.
We already saw that the get method can be used to retrieve either a list or a specific resource (with the resource
and id
parameters) but it can only be used to get a specific url
Key | Value |
---|---|
url | blank schema url |
<?php
try {
// creating webservice access
$webService = new PrestaShopWebservice('http://example.com/', 'ZR92FNY5UFRERNI3O9Z5QDHWKTP3YIIT', false);
// call to retrieve the blank schema
$blankXml = $webService->get(['url' => 'http://example.com/api/customers?schema=blank']);
} catch (PrestaShopWebserviceException $ex) {
// Shows a message related to the error
echo 'Other error: <br />' . $ex->getMessage();
}
Now that you have the empty XML structure you can fill it with your data, once it is done you will use the add()
method to create the new resource.
http://example.com/api/customers?schema=synopsis
)Key | Value |
---|---|
resource | customers |
postXml | XML content (string) |
<?php
try {
// creating webservice access
$webService = new PrestaShopWebservice('http://example.com/', 'ZR92FNY5UFRERNI3O9Z5QDHWKTP3YIIT', false);
// call to retrieve the blank schema
$blankXml = $webService->get(['url' => 'http://example.com/api/customers?schema=blank']);
// get the entity
$customerFields = $blankXml->customer->children();
// edit entity fields
$customerFields->firstname = 'John';
$customerFields->lastname = 'DOE';
$customerFields->email = '[email protected]';
$customerFields->passwd = 'password1234';
// send entity to webservice
$createdXml = $webService->add([
'resource' => 'customers',
'postXml' => $blankXml->asXML(),
]);
$newCustomerFields = $createdXml->customer->children();
echo 'Customer created with ID ' . $newCustomerFields->id . PHP_EOL;
} catch (PrestaShopWebserviceException $ex) {
// Shows a message related to the error
echo 'Other error: <br />' . $ex->getMessage();
}