Account


Click here for a complete list of operations.

Modify

Modifies an accounts details.

Parameter
Notes
Username: 
Password: 
NewUsername:Modified user name. This should be a valid email address. If you do not wish to modify this parameter set it to null.
NewPassword:Modified password. This must be at least 6 or more alphanumeric characters long and contain at least one digit, one upper case and one lower case character.
FirstName:Modified first name. If you do not wish to modify this parameter set it to null.
LastName:Modified second name. If you do not wish to modify this parameter set it to null.
MobilePhone:Modified mobile device number. If you do not wish to modify this parameter set it to null.
Phone:Modified phone number. If you do not wish to modify this parameter set it to null.
Company:Modified company name. If you do not wish to modify this parameter set it to null.
ResultText:E.g. Account for your.address@your.company was successfully updated.
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/Account.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/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/">
      <Username>string</Username>
      <Password>string</Password>
      <NewUsername>string</NewUsername>
      <NewPassword>string</NewPassword>
      <FirstName>string</FirstName>
      <LastName>string</LastName>
      <MobilePhone>string</MobilePhone>
      <Phone>string</Phone>
      <Company>string</Company>
      <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/">
      <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/Account.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/">
      <Username>string</Username>
      <Password>string</Password>
      <NewUsername>string</NewUsername>
      <NewPassword>string</NewPassword>
      <FirstName>string</FirstName>
      <LastName>string</LastName>
      <MobilePhone>string</MobilePhone>
      <Phone>string</Phone>
      <Company>string</Company>
      <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/">
      <ModifyResult>string</ModifyResult>
      <ResultText>string</ResultText>
      <Code>string</Code>
    </ModifyResponse>
  </soap12:Body>
</soap12:Envelope>