POST api/v1/admin/accounts/{id}
This api method creates a subaccount for your account. You need to pass in all the relevant details together with the master account id. A good amount of validation is added, so make sure that you follow the criteria for each of the attributes.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Account id of the master account. To be able to link the master with the sub account. |
globally unique identifier |
Required |
Body Parameters
The details of the new account.
TwoSms.CustomerPortalRole.API.Admin.Accounts.AccountRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Address |
The company's address for billing purposes. |
string |
None. |
| CompanyName |
Company name the account is working for |
string |
None. |
|
Contact Email address of the account |
string |
Required |
|
| Username |
Username of the account |
string |
Required |
| Firstname |
Firstname of the account |
string |
Required |
| LanguageID |
The account language. |
globally unique identifier |
None. |
| Lastname |
Lastname of the account |
string |
Required |
| MobilePhone |
Mobile number of the account |
string |
None. |
| Password |
Password of the account |
string |
Required |
| TimeZone |
The Time zone the account. |
string |
None. |
| WebSite |
The website of the account. |
string |
None. |
Request Formats
application/json, text/json
{
"Address": "sample string 1",
"CompanyName": "sample string 2",
"Email": "sample string 3",
"Username": "sample string 4",
"Firstname": "sample string 5",
"LanguageID": "e3c6be68-efdb-4528-9073-7858ef82d5d0",
"Lastname": "sample string 6",
"MobilePhone": "sample string 7",
"Password": "sample string 8",
"TimeZone": "sample string 9",
"TimeZoneInJavaFormat": "sample string 10",
"WebSite": "sample string 11"
}
application/xml, text/xml
<AccountRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Address>sample string 1</Address> <CompanyName>sample string 2</CompanyName> <Email>sample string 3</Email> <Username>sample string 4</Username> <Firstname>sample string 5</Firstname> <LanguageID>e3c6be68-efdb-4528-9073-7858ef82d5d0</LanguageID> <Lastname>sample string 6</Lastname> <MobilePhone>sample string 7</MobilePhone> <Password>sample string 8</Password> <TimeZone>sample string 9</TimeZone> <TimeZoneInJavaFormat>sample string 10</TimeZoneInJavaFormat> <WebSite>sample string 11</WebSite> </AccountRequest>
application/x-www-form-urlencoded
Response Information
Resource Description
TwoSms.CustomerPortalRole.API.Misc.ResponseOfTwoSms.CustomerPortalRole.API.Admin.Accounts.AccountResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | TwoSms.CustomerPortalRole.API.Misc.Error |
None. |
|
| ResponseData | TwoSms.CustomerPortalRole.API.Misc.ResponseDataOfTwoSms.CustomerPortalRole.API.Admin.Accounts.AccountResponse |
None. |
Response Formats
application/json, text/json
{
"Error": {
"ErrorCode": "sample string 1",
"ErrorReason": "sample string 2"
},
"ResponseData": {
"Identification": {
"UserId": "sample string 1"
},
"Result": "sample string 1",
"Detail": {
"ID": "73ee05de-f7ba-4a39-bece-cc1c168e2923"
}
}
}
application/xml, text/xml
<ResponseOfAccountResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Error>
<ErrorCode>sample string 1</ErrorCode>
<ErrorReason>sample string 2</ErrorReason>
</Error>
<ResponseData>
<Result>sample string 1</Result>
<Identification>
<UserId>sample string 1</UserId>
</Identification>
<Detail>
<ID>73ee05de-f7ba-4a39-bece-cc1c168e2923</ID>
</Detail>
</ResponseData>
</ResponseOfAccountResponse>