Documentation For Users (Blocked)
Created by: bassrock
It looks like there is an issue with api documentation for the /users api call to get a list of users. The documentation states a boolean while the api is actually returning a state parameter. Also seems to be the same type of issue as #3356 (closed)
Documentation:
{
"id": 1,
"username": "john_smith",
"email": "[email protected]",
"name": "John Smith",
"blocked": false,
"created_at": "2012-05-23T08:00:58Z",
"bio": null,
"skype": "",
"linkedin": "",
"twitter": "",
"dark_scheme": false,
"extern_uid": "john.smith",
"provider": "provider_name",
"theme_id": 1
},
Actual Response:
{
" bio": null,
"created_at": "2012-02-10T08:56:20Z",
"email": "test@test",
"extern_uid": null,
"id": 6,
"linkedin": "",
"name": "test test",
"provider": null,
"skype": "test",
"state": blocked,
"theme_id": 1,
"twitter": "",
"username": "test",
}