Subuser - List
/list
Arguments:
*token (required)
Info: Get a list of all of your sub users. Simple as that.
Example Success
{
"code": 200,
"status": "success",
"data": [
{
"id": 42,
"username": "bobby",
"email": "[email protected]",
"first_name": "Bobby",
"last_name": "McFrobby",
"phone_number": 5555555555,
"address": "321 Some Street",
"city": "Denver",
"state": "CO",
"zip": "80112",
"create_dt": "2016-02-02 05:23:55",
"modify_dt": "2016-02-02 05:23:55"
},
{
"id": "55",
"username": "ralph",
"email": "[email protected]",
"first_name": "Ralph",
"last_name": "Dingo",
"phone_number": "5555555554",
"address" "321 Some Street",
"city": "Englewood",
"state": "CO",
"zip": "80112",
"create_dt": "2016-02-02 05:23:55",
"modify_dt": "2016-02-02 05:23:55"
}
]
}
Example Error
About the closest thing you should ever see to an error here is if you have no sub users
{
"code": 200,
"status": "success",
"data": []
}
Not much of an error, I know. But this one is hard to break. Really.