Contact


Click here for a complete list of operations.

Modify

Modify a contact in an address book.

Parameter
Notes
Username: 
Password: 
PersonNumber:Provide a valid person number for your contact. The List or ListSelected methods of this web service can be used to determine the person numbers of all the contacts for this account.
FirstName:Modified first name for you new contact. If you do not wish to modify this parameter set it to null.
LastName:Modified second name for you new contact. If you do not wish to modify this parameter set it to null.
MobilePhone:Modified mobile device number for you new contact. If you do not wish to modify this parameter set it to null.
EmailAddress:Modified email address for you new contact. If you do not wish to modify this parameter set it to null.
ResultText:E.g. Address book entry succesfully modified.;
Code: 

Test

The test form is only available for methods with primitive types as parameters.

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 /WebServices/2.2/Complex/AddressBook/Contact.asmx HTTP/1.1
Host: www.2sms.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.2sms.com/WebServices/2.2/Complex/AddressBook/Modify"

<?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>
    <Modify xmlns="http://www.2sms.com/WebServices/2.2/Complex/AddressBook/">
      <Username>string</Username>
      <Password>string</Password>
      <PersonNumber>string</PersonNumber>
      <FirstName>string</FirstName>
      <LastName>string</LastName>
      <MobilePhone>string</MobilePhone>
      <EmailAddress>string</EmailAddress>
      <ResultText>string</ResultText>
      <Code>string</Code>
    </Modify>
  </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>
    <ModifyResponse xmlns="http://www.2sms.com/WebServices/2.2/Complex/AddressBook/">
      <ModifyResult>string</ModifyResult>
      <ResultText>string</ResultText>
      <Code>string</Code>
    </ModifyResponse>
  </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 /WebServices/2.2/Complex/AddressBook/Contact.asmx HTTP/1.1
Host: www.2sms.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>
    <Modify xmlns="http://www.2sms.com/WebServices/2.2/Complex/AddressBook/">
      <Username>string</Username>
      <Password>string</Password>
      <PersonNumber>string</PersonNumber>
      <FirstName>string</FirstName>
      <LastName>string</LastName>
      <MobilePhone>string</MobilePhone>
      <EmailAddress>string</EmailAddress>
      <ResultText>string</ResultText>
      <Code>string</Code>
    </Modify>
  </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>
    <ModifyResponse xmlns="http://www.2sms.com/WebServices/2.2/Complex/AddressBook/">
      <ModifyResult>string</ModifyResult>
      <ResultText>string</ResultText>
      <Code>string</Code>
    </ModifyResponse>
  </soap12:Body>
</soap12:Envelope>