| Required role: | Admin |
| All Verbs | /users/mobile |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Result | form | List<MobileUserDTO> | No | |
| ResponseStatus | form | ResponseStatus | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| MobileUserId | form | int | No | |
| Username | form | string | No | |
| Fullname | form | string | No | |
| Password | form | string | No | |
| BuildingId | form | int | No | |
| WingId | form | int | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST //users/mobile HTTP/1.1
Host: api.lsu-staging.abodehms.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
result:
[
{
mobileUserId: 0,
username: String,
fullname: String,
password: String,
buildingId: 0,
wingId: 0
}
],
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}