Search Resource¶
Added in 1.6
Provides information on users, groups and review requests.
This is the resource for the autocomplete widget for quick search. This resource helps filter for users, groups and review requests.
Details¶
Name | search |
URI | /api/search/ |
Token Policy ID | search |
HTTP Methods |
|
Parent Resource | Search Resource |
Child Resources | None |
Anonymous Access | Yes, if anonymous site access is enabled |
Fields¶
emailString | The user’s e-mail address |
first_nameString | The user’s first name. |
fullnameString | The user’s full name (first and last). |
idInteger | The numeric ID of the user. |
last_nameString | The user’s last name. |
urlString | The URL to the user’s page on the site. This is deprecated and will be removed in a future version. |
usernameString | The user’s username. |
Links¶
Name | Method | Resource |
---|---|---|
self | GET | Search Resource |
HTTP GET¶
Returns information on users, groups and review requests.
This is used by the autocomplete widget for quick search to get information on users, groups and review requests. This function returns users’ first name, last name and username, groups’ name and display name, and review requests’ ID and summary.
Request Parameters¶
displaynameBoolean | This field is deprecated and ignored. It will be removed in a future release of Review Board. |
fullnameBoolean | Whether or not to include users whose full name includes the search text. |
idInteger | A specific review request ID to search for. |
max_resultsInteger | The maximum number of results to return for each type of matching object. By default, this is 25. There is a hard limit of 200. |
qString | The text to search for. |
Errors¶
100 - Does Not ExistHTTP 404 - Not Found | Object does not exist |
101 - Permission DeniedHTTP 403 - Forbidden | You don’t have permission for this |
103 - Not Logged InHTTP 401 - Unauthorized | You are not logged in |
105 - Invalid Form DataHTTP 400 - Bad Request | One or more fields had errors |
112 - OAuth2 Missing Scope ErrorHTTP 403 - Forbidden | Your OAuth2 token lacks the necessary scopes for this request. |
113 - OAuth2 Access Denied ErrorHTTP 403 - Forbidden | OAuth2 token access for this resource is prohibited. |
Examples¶
application/vnd.reviewboard.org.search+json¶
$ curl http://reviews.example.com/api/search/ -H "Accept: application/json"
Vary: Accept, Cookie
Content-Type: application/vnd.reviewboard.org.search+json
X-Content-Type-Options: nosniff
{
"search": {
"groups": [
{
"absolute_url": "http://reviews.example.com/groups/devgroup/",
"display_name": "Dev Group",
"extra_data": {},
"id": 1,
"invite_only": false,
"links": {
"delete": {
"href": "http://reviews.example.com/api/groups/devgroup/",
"method": "DELETE"
},
"review_group_users": {
"href": "http://reviews.example.com/api/groups/devgroup/users/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/groups/devgroup/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/groups/devgroup/",
"method": "PUT"
}
},
"mailing_list": "devgroup@example.com",
"name": "devgroup",
"url": "/groups/devgroup/",
"visible": true
},
{
"absolute_url": "http://reviews.example.com/groups/emptygroup/",
"display_name": "Empty Group",
"extra_data": {},
"id": 3,
"invite_only": false,
"links": {
"delete": {
"href": "http://reviews.example.com/api/groups/emptygroup/",
"method": "DELETE"
},
"review_group_users": {
"href": "http://reviews.example.com/api/groups/emptygroup/users/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/groups/emptygroup/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/groups/emptygroup/",
"method": "PUT"
}
},
"mailing_list": "",
"name": "emptygroup",
"url": "/groups/emptygroup/",
"visible": true
},
{
"absolute_url": "http://reviews.example.com/groups/newgroup/",
"display_name": "New Group",
"extra_data": {},
"id": 2,
"invite_only": false,
"links": {
"delete": {
"href": "http://reviews.example.com/api/groups/newgroup/",
"method": "DELETE"
},
"review_group_users": {
"href": "http://reviews.example.com/api/groups/newgroup/users/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/groups/newgroup/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/groups/newgroup/",
"method": "PUT"
}
},
"mailing_list": "newgroup@example.com",
"name": "newgroup",
"url": "/groups/newgroup/",
"visible": true
},
{
"absolute_url": "http://reviews.example.com/groups/privgroup/",
"display_name": "Private Group",
"extra_data": {},
"id": 4,
"invite_only": false,
"links": {
"delete": {
"href": "http://reviews.example.com/api/groups/privgroup/",
"method": "DELETE"
},
"review_group_users": {
"href": "http://reviews.example.com/api/groups/privgroup/users/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/groups/privgroup/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/groups/privgroup/",
"method": "PUT"
}
},
"mailing_list": "",
"name": "privgroup",
"url": "/groups/privgroup/",
"visible": true
}
],
"review_requests": [
{
"absolute_url": "http://reviews.example.com/r/8/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "trunk",
"bugs_closed": [],
"changenum": null,
"close_description": null,
"close_description_text_type": "plain",
"commit_id": null,
"depends_on": [],
"description": "This is a test designed for interdiffs.",
"description_text_type": "plain",
"extra_data": {},
"id": 8,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2013-09-07T02:26:18Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/8/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/8/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/8/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/8/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/8/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/8/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/8/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/8/diffs/3/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/8/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/8/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/8/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/8/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/admin/",
"method": "GET",
"title": "admin"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/8/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "pending",
"summary": "Interdiff Revision Test",
"target_groups": [],
"target_people": [
{
"href": "http://reviews.example.com/api/users/grumpy/",
"method": "GET",
"title": "grumpy"
}
],
"testing_done": "",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2013-08-07T02:01:21Z",
"url": "/r/8/"
},
{
"absolute_url": "http://reviews.example.com/r/9/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "",
"bugs_closed": [],
"changenum": null,
"close_description": null,
"close_description_text_type": "plain",
"commit_id": "",
"depends_on": [],
"description": "Just some tests for diff file attachments",
"description_text_type": "plain",
"extra_data": {},
"id": 9,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2013-09-06T20:19:34Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/9/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/9/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/9/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/9/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/9/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/9/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/9/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/9/diffs/1/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/9/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/9/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/9/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/9/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/doc/",
"method": "GET",
"title": "doc"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/9/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "pending",
"summary": "Diff file attachments test",
"target_groups": [
{
"href": "http://reviews.example.com/api/groups/devgroup/",
"method": "GET",
"title": "devgroup"
}
],
"target_people": [],
"testing_done": "",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2013-09-06T19:38:35Z",
"url": "/r/9/"
},
{
"absolute_url": "http://reviews.example.com/r/4/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "",
"bugs_closed": [
"12345"
],
"changenum": 1234,
"close_description": null,
"close_description_text_type": "plain",
"commit_id": "1234",
"depends_on": [],
"description": "Test description.",
"description_text_type": "plain",
"extra_data": {},
"id": 4,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2007-06-24T01:11:24Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/4/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/4/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/4/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/4/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/4/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/4/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/4/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/4/diffs/1/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/4/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/4/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/4/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/4/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/grumpy/",
"method": "GET",
"title": "grumpy"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/4/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "pending",
"summary": "Made e-mail improvements",
"target_groups": [],
"target_people": [
{
"href": "http://reviews.example.com/api/users/doc/",
"method": "GET",
"title": "doc"
}
],
"testing_done": "Tested.",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2007-06-24T00:42:42Z",
"url": "/r/4/"
},
{
"absolute_url": "http://reviews.example.com/r/7/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "",
"bugs_closed": [],
"changenum": null,
"close_description": "",
"close_description_text_type": "plain",
"commit_id": null,
"depends_on": [],
"description": "",
"description_text_type": "plain",
"extra_data": {},
"id": 7,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2007-06-24T01:11:10Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/7/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/7/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/7/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/7/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/7/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/7/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/7/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/7/diffs/1/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/7/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/7/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/7/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/7/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/doc/",
"method": "GET",
"title": "doc"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/7/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "submitted",
"summary": "Improved login form",
"target_groups": [],
"target_people": [
{
"href": "http://reviews.example.com/api/users/admin/",
"method": "GET",
"title": "admin"
},
{
"href": "http://reviews.example.com/api/users/doc/",
"method": "GET",
"title": "doc"
}
],
"testing_done": "",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2007-06-24T00:49:06Z",
"url": "/r/7/"
},
{
"absolute_url": "http://reviews.example.com/r/6/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "trunk",
"bugs_closed": [],
"changenum": null,
"close_description": null,
"close_description_text_type": "plain",
"commit_id": null,
"depends_on": [],
"description": "Foo",
"description_text_type": "plain",
"extra_data": {},
"id": 6,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2007-06-24T01:10:59Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/6/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/6/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/6/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/6/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/6/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/6/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/6/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/6/diffs/1/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/6/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/6/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/6/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/6/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/dopey/",
"method": "GET",
"title": "dopey"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/6/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "pending",
"summary": "Error dialog",
"target_groups": [
{
"href": "http://reviews.example.com/api/groups/emptygroup/",
"method": "GET",
"title": "emptygroup"
}
],
"target_people": [],
"testing_done": "Bar",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2007-06-24T00:47:14Z",
"url": "/r/6/"
},
{
"absolute_url": "http://reviews.example.com/r/2/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "trunk",
"bugs_closed": [
"123"
],
"changenum": null,
"close_description": null,
"close_description_text_type": "plain",
"commit_id": null,
"depends_on": [],
"description": "Be compatible with cleaned_data changes in Django.",
"description_text_type": "plain",
"extra_data": {},
"id": 2,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2007-06-24T00:34:17Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/2/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/2/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/2/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/2/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/2/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/2/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/2/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/2/diffs/1/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/2/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/2/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/2/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/2/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/dopey/",
"method": "GET",
"title": "dopey"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/2/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "pending",
"summary": "Update for cleaned_data changes",
"target_groups": [
{
"href": "http://reviews.example.com/api/groups/devgroup/",
"method": "GET",
"title": "devgroup"
}
],
"target_people": [],
"testing_done": "Works.",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2007-06-24T00:14:32Z",
"url": "/r/2/"
},
{
"absolute_url": "http://reviews.example.com/r/3/",
"approval_failure": "The review request has not been marked \"Ship It!\"",
"approved": false,
"blocks": [],
"branch": "trunk",
"bugs_closed": [
"1234",
"4321",
"5678",
"8765"
],
"changenum": null,
"close_description": null,
"close_description_text_type": "plain",
"commit_id": null,
"depends_on": [],
"description": "Added some user permissions checking for JSON API functions.",
"description_text_type": "plain",
"extra_data": {},
"id": 3,
"issue_dropped_count": 0,
"issue_open_count": 0,
"issue_resolved_count": 0,
"issue_verifying_count": 0,
"last_updated": "2007-06-24T00:28:33Z",
"links": {
"changes": {
"href": "http://reviews.example.com/api/review-requests/3/changes/",
"method": "GET"
},
"delete": {
"href": "http://reviews.example.com/api/review-requests/3/",
"method": "DELETE"
},
"diff_context": {
"href": "http://reviews.example.com/api/review-requests/3/diff-context/",
"method": "GET"
},
"diffs": {
"href": "http://reviews.example.com/api/review-requests/3/diffs/",
"method": "GET"
},
"draft": {
"href": "http://reviews.example.com/api/review-requests/3/draft/",
"method": "GET"
},
"file_attachments": {
"href": "http://reviews.example.com/api/review-requests/3/file-attachments/",
"method": "GET"
},
"last_update": {
"href": "http://reviews.example.com/api/review-requests/3/last-update/",
"method": "GET"
},
"latest_diff": {
"href": "http://example.com/api/review-requests/3/diffs/1/",
"method": "GET"
},
"repository": {
"href": "http://reviews.example.com/api/repositories/1/",
"method": "GET",
"title": "Review Board SVN"
},
"reviews": {
"href": "http://reviews.example.com/api/review-requests/3/reviews/",
"method": "GET"
},
"screenshots": {
"href": "http://reviews.example.com/api/review-requests/3/screenshots/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/review-requests/3/",
"method": "GET"
},
"status_updates": {
"href": "http://reviews.example.com/api/review-requests/3/status-updates/",
"method": "GET"
},
"submitter": {
"href": "http://reviews.example.com/api/users/admin/",
"method": "GET",
"title": "admin"
},
"update": {
"href": "http://reviews.example.com/api/review-requests/3/",
"method": "PUT"
}
},
"public": true,
"ship_it_count": 0,
"status": "pending",
"summary": "Add permission checking for JSON API",
"target_groups": [
{
"href": "http://reviews.example.com/api/groups/privgroup/",
"method": "GET",
"title": "privgroup"
}
],
"target_people": [
{
"href": "http://reviews.example.com/api/users/doc/",
"method": "GET",
"title": "doc"
},
{
"href": "http://reviews.example.com/api/users/dopey/",
"method": "GET",
"title": "dopey"
}
],
"testing_done": "Tested some functions.",
"testing_done_text_type": "plain",
"text_type": null,
"time_added": "2007-06-24T00:17:33Z",
"url": "/r/3/"
}
],
"users": [
{
"avatar_html": null,
"avatar_url": "https://secure.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=48&d=mm",
"avatar_urls": {
"1x": "https://secure.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=48&d=mm",
"2x": "https://secure.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=96&d=mm",
"3x": "https://secure.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=144&d=mm"
},
"email": "admin@example.com",
"first_name": "Admin",
"fullname": "Admin User",
"id": 1,
"is_active": true,
"last_name": "User",
"links": {
"api_tokens": {
"href": "http://reviews.example.com/api/users/admin/api-tokens/",
"method": "GET"
},
"archived_review_requests": {
"href": "http://reviews.example.com/api/users/admin/archived-review-requests/",
"method": "GET"
},
"muted_review_requests": {
"href": "http://reviews.example.com/api/users/admin/muted-review-requests/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/users/admin/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/users/admin/",
"method": "PUT"
},
"user_file_attachments": {
"href": "http://reviews.example.com/api/users/admin/user-file-attachments/",
"method": "GET"
},
"watched": {
"href": "http://reviews.example.com/api/users/admin/watched/",
"method": "GET"
}
},
"url": "/users/admin/",
"username": "admin"
},
{
"avatar_html": null,
"avatar_url": "https://secure.gravatar.com/avatar/b0f1ae4342591db2695fb11313114b3e?s=48&d=mm",
"avatar_urls": {
"1x": "https://secure.gravatar.com/avatar/b0f1ae4342591db2695fb11313114b3e?s=48&d=mm",
"2x": "https://secure.gravatar.com/avatar/b0f1ae4342591db2695fb11313114b3e?s=96&d=mm",
"3x": "https://secure.gravatar.com/avatar/b0f1ae4342591db2695fb11313114b3e?s=144&d=mm"
},
"email": "doc@example.com",
"first_name": "Doc",
"fullname": "Doc Dwarf",
"id": 2,
"is_active": true,
"last_name": "Dwarf",
"links": {
"api_tokens": {
"href": "http://reviews.example.com/api/users/doc/api-tokens/",
"method": "GET"
},
"archived_review_requests": {
"href": "http://reviews.example.com/api/users/doc/archived-review-requests/",
"method": "GET"
},
"muted_review_requests": {
"href": "http://reviews.example.com/api/users/doc/muted-review-requests/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/users/doc/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/users/doc/",
"method": "PUT"
},
"user_file_attachments": {
"href": "http://reviews.example.com/api/users/doc/user-file-attachments/",
"method": "GET"
},
"watched": {
"href": "http://reviews.example.com/api/users/doc/watched/",
"method": "GET"
}
},
"url": "/users/doc/",
"username": "doc"
},
{
"avatar_html": null,
"avatar_url": "https://secure.gravatar.com/avatar/1a0098e6600792ea4f714aa205bf3f2b?s=48&d=mm",
"avatar_urls": {
"1x": "https://secure.gravatar.com/avatar/1a0098e6600792ea4f714aa205bf3f2b?s=48&d=mm",
"2x": "https://secure.gravatar.com/avatar/1a0098e6600792ea4f714aa205bf3f2b?s=96&d=mm",
"3x": "https://secure.gravatar.com/avatar/1a0098e6600792ea4f714aa205bf3f2b?s=144&d=mm"
},
"email": "dopey@example.com",
"first_name": "Dopey",
"fullname": "Dopey Dwarf",
"id": 3,
"is_active": true,
"last_name": "Dwarf",
"links": {
"api_tokens": {
"href": "http://reviews.example.com/api/users/dopey/api-tokens/",
"method": "GET"
},
"archived_review_requests": {
"href": "http://reviews.example.com/api/users/dopey/archived-review-requests/",
"method": "GET"
},
"muted_review_requests": {
"href": "http://reviews.example.com/api/users/dopey/muted-review-requests/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/users/dopey/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/users/dopey/",
"method": "PUT"
},
"user_file_attachments": {
"href": "http://reviews.example.com/api/users/dopey/user-file-attachments/",
"method": "GET"
},
"watched": {
"href": "http://reviews.example.com/api/users/dopey/watched/",
"method": "GET"
}
},
"url": "/users/dopey/",
"username": "dopey"
},
{
"avatar_html": null,
"avatar_url": "https://secure.gravatar.com/avatar/8f32aaaba6ce2ea6ef975d31e0fe4780?s=48&d=mm",
"avatar_urls": {
"1x": "https://secure.gravatar.com/avatar/8f32aaaba6ce2ea6ef975d31e0fe4780?s=48&d=mm",
"2x": "https://secure.gravatar.com/avatar/8f32aaaba6ce2ea6ef975d31e0fe4780?s=96&d=mm",
"3x": "https://secure.gravatar.com/avatar/8f32aaaba6ce2ea6ef975d31e0fe4780?s=144&d=mm"
},
"email": "grumpy@example.com",
"first_name": "Grumpy",
"fullname": "Grumpy Dwarf",
"id": 4,
"is_active": true,
"last_name": "Dwarf",
"links": {
"api_tokens": {
"href": "http://reviews.example.com/api/users/grumpy/api-tokens/",
"method": "GET"
},
"archived_review_requests": {
"href": "http://reviews.example.com/api/users/grumpy/archived-review-requests/",
"method": "GET"
},
"muted_review_requests": {
"href": "http://reviews.example.com/api/users/grumpy/muted-review-requests/",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/users/grumpy/",
"method": "GET"
},
"update": {
"href": "http://reviews.example.com/api/users/grumpy/",
"method": "PUT"
},
"user_file_attachments": {
"href": "http://reviews.example.com/api/users/grumpy/user-file-attachments/",
"method": "GET"
},
"watched": {
"href": "http://reviews.example.com/api/users/grumpy/watched/",
"method": "GET"
}
},
"url": "/users/grumpy/",
"username": "grumpy"
}
]
},
"stat": "ok"
}