You can create new SEMSblast accounts automatically via the API. Please use the following details to create accounts...
Submit an XML Request with the following details:
Post URL: http://cp.semsblast.com/api/v3.0/account/createaccount/
Fields to Post | |||
emailaddress | String | REQUIRED | The username of the new SEMSblast user |
password | String | REQUIRED | The password for the new SEMSblast user |
fullname | String | REQUIRED | The full name of the new SEMSblast user |
apiKey | String | REQUIRED | The API Key of your existing SEMSblast account. |
agencyAccount | String | 0 if its a standard SEMSblast account, 1 if its an agency account | |
isFreeAccount | String | 0 if its a normal account, 1 if it is automatically set to FREE FOREVER |
Data Sent Back | ||
error | Int | Indicated wether an error has occured. 0 for no error. 1 for error. |
status | String | If there's been an error, a text description of the error that occured will be here. |
apiKey | String | If successful you will receive the APIKEY of the new user here. |
userID | String | If successful you will receive the USERID of the new user here |
<xml> <apiKey>553-1123-32131231</apiKey> <emailaddress>your@username.com</emailaddress> <password>password</password> <fullname>John Smith</fullname> </xml> |
<xml> <error>0</error> <status>Success</status> <apiKey>44-121312131223</apiKey> <userID>123123</userID> </xml> |