account¶
-
GET
/api/3.0/account
¶ Retrieve a list detailing all staff accounts in your system.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | {
"version": "3.0",
"account_id": 1,
"host_id": "your-company.checkfront.com",
"name": "Your Company",
"locale": {
"id": "en_US",
"lang": "en",
"currency": "CAD"
},
"request": {
"status": "OK",
"resource": "account",
"records": 1,
"limit": 0,
"page": 1,
"pages": 1,
"time": 0.0013,
"method": "get"
},
"account": [
{
"account_id": 1,
"first_name": "Johnson",
"last_name": "Smith",
"email": "support@checkfront.com",
"mobile_phone": "",
"nickname": "John",
"login_id": "johnsmith",
"enabled": 1,
"date_created": 1490573063,
"date_last_login": 1490573064,
"ip_last_login": "0.0.0.0",
"feed_token": "354629ce3117f34e0d7208d4847137f371deae824625ee1635009b7b88ed8804",
"partner": 0
}
]
}
|