The /user/ endpoint is used to user accounts associated with a StatusDashboard account.
Examples
List StatusDashboard User Accounts (List method, GET)
curl --header "Authorization:ApiKey testuser:256ee09ded99b29036fac4de96acedb7e8af7bf7" https://www.statusdashboard.com/api/v1/user/
{ "meta": { "limit": 10, "next": null, "offset": 0, "previous": null, "total_count": 2 }, "objects": [ { "date_joined": "2015-04-26T23:53:29", "email": "testuser@domain.com", "first_name": "Test", "is_active": true, "last_login": "2015-11-16T07:14:41", "last_name": "User", "resource_uri": "/api/v1/user/1002/", "username": "testuser" }, { "date_joined": "2015-10-03T20:30:35", "email": "testuser1@domain.com", "first_name": "Test", "is_active": false, "last_login": "2015-10-03T20:30:35", "last_name": "User 1", "resource_uri": "/api/v1/user/1003/", "username": "testuser1" } ] }
Upon success, you'll receive back an HTTP 200 (OK) indicating that the API call succeeded.