Delete picture and templates for a user

deletePictureAndTemplates(p_companyID, p_wsAltUserId, p_deletePicture, p_deleteTemplates)

 

You can use this endpoint to delete the picture or the templates for a user from our software.

Parameters

Name Type Required Description
p_companyID string Yes The security code you have been provided with, string (32)
p_wsAltUserId string Yes The id of the user from our database
p_deletePicture integer No 0 not delete the picture, 1 delete picture
p_deleteTemplates integer Yes 0 not delete the templates, 1 delete templates

Return values

ERROR_NO_SECURITY_HASH - no p_companyID is provided.

ERROR_UNKNOWN_SECURITY_HASH - the supplied p_companyID is invalid.

NO_WS_ALT_USER_ID_SET - no p_wsAltUserId provided.

NO_WS_ALT_USER_ID_INFOFIELD_SET - no wsAltUserId infolabel is set for the company.

NO_USER_FOUND_BASED_ON_WS_ALT_USER_ID_VALUE - user was not found based on the p_wsAltUserId provided.

NO_USER_FOUND_BASED_ON_INFO_ID_VALUE - user was not found based on the p_wsAltUserId provided.


NO_ACTION_SELECTED - both p_deletePicture and p_deleteTemplates are set to 0

PROFILE_PICTURE_DELETED - if the user profile picture was deleted succesfully.

FACE_TEMPLATES_DELETED - if the user templates were deleted succesfully.

Sample

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:uen="uen:esws">
<soapenv:Header/>
<soapenv:Body>
<uen:Esws.deletePictureAndTemplates soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<p_companyID xsi:type="xsd:string">^4p;tU0Q+#dEIhTWkuj5FnLD^aKWqVu0</p_companyID>
<p_wsAltUserId xsi:type="xsd:string">123456</p_data>
<p_deletePicture xsi:type="xsd:integer">1</p_extenstion>
<p_deleteTemplates xsi:type="xsd:integer">1</p_extenstion>
</uen:Esws.deletePictureAndTemplates>
</soapenv:Body>
</soapenv:Envelope>

Response

<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:Esws.deletePictureAndTemplatesResponse xmlns:ns1="uen:esws">
<return xsi:type="xsd:string">PROFILE_PICTURE_DELETED. FACE_TEMPLATES_DELETED</return>
</ns1:Esws.deletePictureAndTemplatesResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>