soap
Click here for a complete list of operations.
EditContact
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /soap.asmx HTTP/1.1
Host: api.pixelz.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://removethebackground.com/EditContact"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<EditContact xmlns="http://removethebackground.com/">
<contactEmail>string</contactEmail>
<contactAPIkey>string</contactAPIkey>
<contactName>string</contactName>
<contactCompany>string</contactCompany>
<contactAddress1>string</contactAddress1>
<contactAddress2>string</contactAddress2>
<contactZipCode>string</contactZipCode>
<contactCity>string</contactCity>
<contactState>string</contactState>
<contactPhone>string</contactPhone>
<timezoneIndex>string</timezoneIndex>
<billingEmail>string</billingEmail>
<billingAddress1>string</billingAddress1>
<billingAddress2>string</billingAddress2>
<billingZipCode>string</billingZipCode>
<billingCity>string</billingCity>
<billingState>string</billingState>
<euVatNumber>string</euVatNumber>
<isReceivedNewslater>string</isReceivedNewslater>
</EditContact>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<EditContactResponse xmlns="http://removethebackground.com/">
<EditContactResult>
<Message>string</Message>
<ErrorCode>string</ErrorCode>
</EditContactResult>
</EditContactResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /soap.asmx HTTP/1.1
Host: api.pixelz.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<EditContact xmlns="http://removethebackground.com/">
<contactEmail>string</contactEmail>
<contactAPIkey>string</contactAPIkey>
<contactName>string</contactName>
<contactCompany>string</contactCompany>
<contactAddress1>string</contactAddress1>
<contactAddress2>string</contactAddress2>
<contactZipCode>string</contactZipCode>
<contactCity>string</contactCity>
<contactState>string</contactState>
<contactPhone>string</contactPhone>
<timezoneIndex>string</timezoneIndex>
<billingEmail>string</billingEmail>
<billingAddress1>string</billingAddress1>
<billingAddress2>string</billingAddress2>
<billingZipCode>string</billingZipCode>
<billingCity>string</billingCity>
<billingState>string</billingState>
<euVatNumber>string</euVatNumber>
<isReceivedNewslater>string</isReceivedNewslater>
</EditContact>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<EditContactResponse xmlns="http://removethebackground.com/">
<EditContactResult>
<Message>string</Message>
<ErrorCode>string</ErrorCode>
</EditContactResult>
</EditContactResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /soap.asmx/EditContact?contactEmail=string&contactAPIkey=string&contactName=string&contactCompany=string&contactAddress1=string&contactAddress2=string&contactZipCode=string&contactCity=string&contactState=string&contactPhone=string&timezoneIndex=string&billingEmail=string&billingAddress1=string&billingAddress2=string&billingZipCode=string&billingCity=string&billingState=string&euVatNumber=string&isReceivedNewslater=string HTTP/1.1 Host: api.pixelz.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ApiResponse xmlns="http://removethebackground.com/"> <Message>string</Message> <ErrorCode>string</ErrorCode> </ApiResponse>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /soap.asmx/EditContact HTTP/1.1 Host: api.pixelz.com Content-Type: application/x-www-form-urlencoded Content-Length: length contactEmail=string&contactAPIkey=string&contactName=string&contactCompany=string&contactAddress1=string&contactAddress2=string&contactZipCode=string&contactCity=string&contactState=string&contactPhone=string&timezoneIndex=string&billingEmail=string&billingAddress1=string&billingAddress2=string&billingZipCode=string&billingCity=string&billingState=string&euVatNumber=string&isReceivedNewslater=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ApiResponse xmlns="http://removethebackground.com/"> <Message>string</Message> <ErrorCode>string</ErrorCode> </ApiResponse>