The following SOAP methods are provided specifically for creating images.
Methods
create
Creates a new image
EvalancheResourceInformation create( string image_base64, string name, int category_id )
Details
Parameters
- string image_base64: base64 encoded image data
- string name: Name of the image to be created
- int category_id: Id of the folder in which the image should be created
Return value
- EvalancheResourceInformation: Object analogous to the method getById (Query information about an object using object Id)
Required rights
Create image
Use
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:imag="https://scnem.com/soap.php/soap/image">
<soapenv:Header/>
<soapenv:Body>
<imag:create>
<image_base64>BASE64_IMAGE</image_base64>
<name>NAME</name>
<category_id>FOLDER_ID</category_id>
</imag:create>
</soapenv:Body>
</soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://scnem.com/soap.php/soap/image">
<SOAP-ENV:Body>
<ns1:createResponse>
<createResult>
<url>IMAGE_URL</url>
<type_id>IMAGE_TYPE_ID</type_id>
<category_id>FOLDER_ID</category_id>
<customer_id>MANDATOR_ID</customer_id>
<id>IMAGE_ID</id>
<name>IMAGE_NAME</name>
</createResult>
</ns1:createResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>