GET api/v1/UserAdminAPI/GetAllUsers?accountID={accountID}
Returns all user based on accountID. iff accountID not supplied, it will use the one from current user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
TwoSms.CustomerPortalRole.API.Misc.ResponseOfSystem.Collections.Generic.ListOfTwoSms.CustomerPortalRole.API.Admin.Users.User| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | TwoSms.CustomerPortalRole.API.Misc.Error |
None. |
|
| ResponseData | TwoSms.CustomerPortalRole.API.Misc.ResponseDataOfSystem.Collections.Generic.ListOfTwoSms.CustomerPortalRole.API.Admin.Users.User |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": {
"ErrorCode": "sample string 1",
"ErrorReason": "sample string 2"
},
"ResponseData": {
"Identification": {
"UserId": "sample string 1"
},
"Result": "sample string 1",
"Detail": [
{
"ID": "68e3439e-925e-4a87-940d-ff9a2c6d155e",
"AgreementDate": "2025-11-13T05:52:12.6728784+00:00",
"AccountID": "8ab29a66-4f98-4a1a-8f99-44b882403a99",
"AdminUser": true,
"DateCreated": "2025-11-13T05:52:12.6728784+00:00",
"DateModified": "2025-11-13T05:52:12.6728784+00:00",
"DeclineDate": "2025-11-13T05:52:12.6728784+00:00",
"DisplayName": "sample string 6",
"DPAVersion": "sample string 7",
"EmailAddress": "sample string 8",
"Enabled": true,
"LanguageID": "75ed7280-5c9a-4a1a-b082-7e1d0312a88f",
"MobilePhone": "sample string 12",
"Password": "sample string 13",
"Pin": "sample string 14",
"Preferences": 0,
"PrivacyPolicyVersion": "sample string 15",
"TimeZone": "sample string 16",
"Username": "sample string 17"
},
{
"ID": "68e3439e-925e-4a87-940d-ff9a2c6d155e",
"AgreementDate": "2025-11-13T05:52:12.6728784+00:00",
"AccountID": "8ab29a66-4f98-4a1a-8f99-44b882403a99",
"AdminUser": true,
"DateCreated": "2025-11-13T05:52:12.6728784+00:00",
"DateModified": "2025-11-13T05:52:12.6728784+00:00",
"DeclineDate": "2025-11-13T05:52:12.6728784+00:00",
"DisplayName": "sample string 6",
"DPAVersion": "sample string 7",
"EmailAddress": "sample string 8",
"Enabled": true,
"LanguageID": "75ed7280-5c9a-4a1a-b082-7e1d0312a88f",
"MobilePhone": "sample string 12",
"Password": "sample string 13",
"Pin": "sample string 14",
"Preferences": 0,
"PrivacyPolicyVersion": "sample string 15",
"TimeZone": "sample string 16",
"Username": "sample string 17"
}
]
}
}
application/xml, text/xml
Sample:
<ResponseOfListOfUser 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>
<User>
<ID>68e3439e-925e-4a87-940d-ff9a2c6d155e</ID>
<AgreementDate>2025-11-13T05:52:12.6728784+00:00</AgreementDate>
<AccountID>8ab29a66-4f98-4a1a-8f99-44b882403a99</AccountID>
<AdminUser>true</AdminUser>
<DateCreated>2025-11-13T05:52:12.6728784+00:00</DateCreated>
<DateModified>2025-11-13T05:52:12.6728784+00:00</DateModified>
<DeclineDate>2025-11-13T05:52:12.6728784+00:00</DeclineDate>
<DisplayName>sample string 6</DisplayName>
<DPAVersion>sample string 7</DPAVersion>
<EmailAddress>sample string 8</EmailAddress>
<Enabled>true</Enabled>
<LanguageID>75ed7280-5c9a-4a1a-b082-7e1d0312a88f</LanguageID>
<Language>sample string 11</Language>
<MobilePhone>sample string 12</MobilePhone>
<Password>sample string 13</Password>
<Pin>sample string 14</Pin>
<Preferences>NONE</Preferences>
<PrivacyPolicyVersion>sample string 15</PrivacyPolicyVersion>
<TimeZone>sample string 16</TimeZone>
<Username>sample string 17</Username>
</User>
<User>
<ID>68e3439e-925e-4a87-940d-ff9a2c6d155e</ID>
<AgreementDate>2025-11-13T05:52:12.6728784+00:00</AgreementDate>
<AccountID>8ab29a66-4f98-4a1a-8f99-44b882403a99</AccountID>
<AdminUser>true</AdminUser>
<DateCreated>2025-11-13T05:52:12.6728784+00:00</DateCreated>
<DateModified>2025-11-13T05:52:12.6728784+00:00</DateModified>
<DeclineDate>2025-11-13T05:52:12.6728784+00:00</DeclineDate>
<DisplayName>sample string 6</DisplayName>
<DPAVersion>sample string 7</DPAVersion>
<EmailAddress>sample string 8</EmailAddress>
<Enabled>true</Enabled>
<LanguageID>75ed7280-5c9a-4a1a-b082-7e1d0312a88f</LanguageID>
<Language>sample string 11</Language>
<MobilePhone>sample string 12</MobilePhone>
<Password>sample string 13</Password>
<Pin>sample string 14</Pin>
<Preferences>NONE</Preferences>
<PrivacyPolicyVersion>sample string 15</PrivacyPolicyVersion>
<TimeZone>sample string 16</TimeZone>
<Username>sample string 17</Username>
</User>
</Detail>
</ResponseData>
</ResponseOfListOfUser>