public array CreateAccount( array $newaccount )
Creates a new Sedo customer account.
Type | Parameter | Mandatory | Description |
---|---|---|---|
integer | $partnerid | yes | Partner ID. |
string | $signkey | yes | Sign key. |
string | $username | yes | User name. (max. 25 characters) |
string | $password | yes | Password. (max. 16 characters) |
string | yes | Email address. | |
string | $firstname | yes | First name. |
string | $lastname | yes | Last name. |
string | $company | no | Company name. |
string | $street | yes | Street address. |
string | $zipcode | yes | ZIP code. |
string | $city | yes | City name. |
string | $state | no | ISO 3166-2 two-letter state code. See US States. |
string | $country | yes | ISO 3166-1 alpha-2 two-letter country code. See Countries. |
string | $language | yes | ISO 639-1 two-letter language code. See Domain Languages. |
string | $vat | no | VAT (Value Added Tax) number. |
string | $phone | no |
Phone number.
|
boolean | $confirmation | yes |
Whether the customer accepts Sedo's terms of service.
|
Type | Description |
---|---|
integer | 1 if the account bas been successfully created. |
<?php
try {
// Create a new client by providing the endpoint to the constructor.
$client = new SoapClient(
null,
[
'location' => 'https://api.sedo.com/api/v1/',
'soap_version' => SOAP_1_1,
'encoding' => 'UTF-8',
'uri' => 'urn:SedoInterface',
'style' => SOAP_RPC,
'use' => SOAP_ENCODED,
]
);
// Set the values for the array
$params = [
'partnerid' => 1234,
'signkey' => 'abcdefghijklmnopqrstuvwxyz0123456789',
'username' => 'johndoe',
'password' => 'secret',
'email' => 'john.doe@example,com',
'firstname' => 'John',
'lastname' => 'Doe',
'company' => 'ACME',
'street' => 'Main Road 47',
'zipcode' => '54321',
'city' => 'Racoon City',
'state' => 'UC',
'country' => 'US',
'language' => 'en',
'vat' => '',
'phone' => '5552368',
'confirmation' => true,
];
// Call the SOAP method
$result = $client->CreateAccount($params);
// Display the result
if ($result == 1) {
echo "Account was created";
} else {
echo "Account couldn't be created";
}
} catch (SoapFault $e) {
echo 'Error: '.$e->getMessage();
}
<?php
/* URL to Sedo's API */
$baseUrl = 'https://api.sedo.com/api/v1/CreateAccount?';
/* API function parameters */
$params = [
'partnerid' => 1234,
'signkey' => 'abcdefghijklmnopqrstuvwxyz0123456789',
'username' => 'johndoe',
'password' => 'secret',
'output_method' => 'xml',
'email' => 'john.doe@example,com',
'firstname' => 'John',
'lastname' => 'Doe',
'company' => 'ACME',
'street' => 'Main Road 47',
'zipcode' => '54321',
'city' => 'Racoon City',
'state' => 'UC',
'country' => 'US',
'language' => 'en',
'vat' => '',
'phone' => '5552368',
'confirmation' => true,
];
/* build request URL */
$request = $baseUrl . http_build_query($params);
/* fire API request */
$fp = @fopen($request, 'r');
/* read response line by line */
while (!@feof($fp)) {
echo fread($fp, 4096);
}
/* close the connection */
fclose($fp);
For a successful request, you will receive an XML document as response in this format:
<?xml version="1.0" encoding="UTF-8"?>
<SEDOCREATEACCOUNT ver="1.0">
<createaccount type="xsd:int">1</createaccount>
</SEDOCREATEACCOUNT>
For an unsuccessful request, you will receive an XML document as response in this format:
<?xml version="1.0" encoding="UTF-8"?>
<SEDOFAULT ver="1.0">
<faultcode type="xsd:string">Exxx</faultcode>
<faultstring type="xsd:string">xxxxxx</faultstring>
</SEDOFAULT>
// Create package sedoapi:
// java org.apache.axis.wsdl.WSDL2Java -av -p sedoapi https://api.sedo.com/api/v1/?wsdl
import sedoapi.*;
import org.apache.axis.AxisFault;
public class SedoCreateAccount
{
public static void main(String[] args) throws Exception
{
sedoapi.SedoInterfaceServiceLocator locator = new sedoapi.SedoInterfaceServiceLocator();
sedoapi.SedoInterfacePortType port = locator.getSedoInterfacePort();
try {
CreateAccountRequest request = new CreateAccountRequest();
request.setPartnerid(1234);
request.setSignkey("abcdefghijklmnopqrstuvwxyz0123456789");
request.setUsername("johndoe");
request.setPassword("secret");
request.setEmail("john.doe@example.com");
request.setFirstname("John");
request.setLastname("Doe");
request.setCompany("ACME");
request.setStreet("Main Road 47");
request.setZipcode("54321");
request.setCity("Racoon City");
request.setState("UC");
request.setCountry("USA");
request.setLanguage("en");
request.setVat("");
request.setPhone("5552368");
request.setConfirmation(true);
try {
int response = (int) port.createAccount(request);
if (response == 1) {
System.out.println("Account was created");
} else {
System.out.println("Account couldn't be created");
}
} catch (NullPointerException ex) {
ex.printStackTrace();
}
} catch (AxisFault fault) {
System.err.println("Faultcode : " + fault.getFaultCode());
System.err.println("Faultstring : " + fault.getFaultString());
}
}
}