.md Productsmd mdEmail® Registration API

createAccount($regRequest)

createAccount should be called for new user sign up from max signature reseller site. It can be retrieved via a soap request using the "createAccount" method to http://mdemail-api.max.md.eval.max.md/MdDigitalSignatureApi.php?wsdl.

regRequest:{
offerType:,//0 for individual account || 1 for small business, Int
userInfo:{//Users information
{//array for each user
username:'',//account name, for example: "maxsiguser", String
email:'',//email address, String
password:'',//password, String
is_admin://is the user the admin, Int
},
{//second user
...
}
},
billingInfo:{//billing information
cardInfo:{//credit card information
cardNo:''//card number, String
name:''//card holder's name, String
type:''//card type (visa, master, etc.), String
cvv:''//cvv number, String
expMon://expiration month, Int
expYr://expiration year, Int
},
addressInfo:{//address information
street1:''//Street line 1, String
street2:''//Street line 2, String
city:''//city name, String
state:''//state name, String
zip:''//zip code, String
phone:''//phone number, String
},
}
}

Response

The response comes in a soap object containing three elements.

(string) code:{//response code
000//success
001.U.E//error while creating user
002.C.E//error while validating credit card
}
(string) message - A description of the response code

Sample Code (using NuSoap) (PHP)

The xml for the WSDL can be found here