SimplicityCollect Web Services API

<back to all web services

DebtorUpdate

DebtorUpdate Parameters:
NameParameterData TypeRequiredDescription
ApiTokenquerystringNo
DebtorIdquerystringNo
DebtorFirstNamequerystringNo
DebtorMiddleNamequerystringNo
DebtorLastNamequerystringNo
DebtorAddressquerystringNo
DebtorCityquerystringNo
DebtorStatequerystringNo
DebtorZipquerystringNo
DebtorDOBquerystringNo
DebtorEmployerNamequerystringNo
DebtorEmployerPhonequerystringNo
DebtorHomePhonequerystringNo
DebtorCellPhonequerystringNo
DebtorEmailquerystringNo
DebtorEmailConsentTypequerystringNo
DebtorCustomFieldsqueryList<DebtorCustomField>No
DebtorCustomField Parameters:
NameParameterData TypeRequiredDescription
FieldNameformstringNo
FieldValueformstringNo
TableColumnNameformstringNo
DataTypeformMySqlDbTypeNo
DebtorUpdateResponse Parameters:
NameParameterData TypeRequiredDescription
StatusformstringNo
MessageformstringNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .soap11 suffix or ?format=soap11

HTTP + SOAP11

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /soap11 HTTP/1.1 
Host: app.simplicitycollect.com 
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: DebtorUpdate

<?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>

<DebtorUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServiceHelper.Debtors">
  <ApiToken>String</ApiToken>
  <DebtorAddress>String</DebtorAddress>
  <DebtorCellPhone>String</DebtorCellPhone>
  <DebtorCity>String</DebtorCity>
  <DebtorCustomFields xmlns:d2p1="http://schemas.datacontract.org/2004/07/BusinessLogic.Debtors">
    <d2p1:DebtorCustomField>
      <d2p1:DataType>Decimal</d2p1:DataType>
      <d2p1:FieldName>String</d2p1:FieldName>
      <d2p1:FieldValue>String</d2p1:FieldValue>
      <d2p1:TableColumnName>String</d2p1:TableColumnName>
    </d2p1:DebtorCustomField>
  </DebtorCustomFields>
  <DebtorDOB>String</DebtorDOB>
  <DebtorEmail>String</DebtorEmail>
  <DebtorEmailConsentType>String</DebtorEmailConsentType>
  <DebtorEmployerName>String</DebtorEmployerName>
  <DebtorEmployerPhone>String</DebtorEmployerPhone>
  <DebtorFirstName>String</DebtorFirstName>
  <DebtorHomePhone>String</DebtorHomePhone>
  <DebtorId>String</DebtorId>
  <DebtorLastName>String</DebtorLastName>
  <DebtorMiddleName>String</DebtorMiddleName>
  <DebtorState>String</DebtorState>
  <DebtorZip>String</DebtorZip>
</DebtorUpdate>

    </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
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>

<DebtorUpdateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServiceHelper.Debtors">
  <Message>String</Message>
  <Status>String</Status>
</DebtorUpdateResponse>

    </soap:Body>
</soap:Envelope>