All
All command is useful when you want to get all users, including archived and trashed ones. Here we have three users:
Response: HTTP 200, application/json (Hide)
GET /users
Response:
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
[
{
"id": 1,
"class": "Owner",
"url_path": "\/users\/1",
"is_archived": false,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164616,
"created_by_id": 1,
"updated_on": 1430164616,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Ilija.studen",
"last_name": null,
"display_name": "ilija.studen",
"short_display_name": "ilija.studen",
"email": "ilija.studen@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=1&size=--SIZE--×tamp=1430164616",
"custom_permissions": [],
"company_id": 1,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
},
{
"id": 2,
"class": "Member",
"url_path": "\/users\/2",
"is_archived": false,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164618,
"created_by_id": 1,
"updated_on": 1430164618,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Member1",
"last_name": null,
"display_name": "member1",
"short_display_name": "member1",
"email": "member1@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=2&size=--SIZE--×tamp=1430164618",
"custom_permissions": [],
"company_id": 0,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
},
{
"id": 3,
"class": "Member",
"url_path": "\/users\/3",
"is_archived": false,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164618,
"created_by_id": 1,
"updated_on": 1430164618,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Member2",
"last_name": null,
"display_name": "member2",
"short_display_name": "member2",
"email": "member2@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=3&size=--SIZE--×tamp=1430164618",
"custom_permissions": [],
"company_id": 0,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
}
]We'll move second to archive and third to Trash:
Response: HTTP 200, application/json (Hide)
PUT /move-to-archive/user/2
Response:
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
{
"single": {
"id": 2,
"class": "Member",
"url_path": "\/users\/2",
"is_archived": true,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164618,
"created_by_id": 1,
"updated_on": 1430164619,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Member1",
"last_name": null,
"display_name": "member1",
"short_display_name": "member1",
"email": "member1@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=2&size=--SIZE--×tamp=1430164619",
"custom_permissions": [],
"company_id": 0,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
}
}Response: HTTP 200, application/json (Hide)
PUT /move-to-trash/user/3
Response:
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
{
"single": {
"id": 3,
"class": "Member",
"url_path": "\/users\/3",
"is_archived": false,
"is_trashed": true,
"trashed_on": 1430164619,
"trashed_by_id": 1,
"created_on": 1430164618,
"created_by_id": 1,
"updated_on": 1430164619,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Member2",
"last_name": null,
"display_name": "member2",
"short_display_name": "member2",
"email": "member2@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=3&size=--SIZE--×tamp=1430164619",
"custom_permissions": [],
"company_id": 0,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
}
}Now when we list users, we'll get only active user:
Response: HTTP 200, application/json (Hide)
GET /users
Response:
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
[
{
"id": 1,
"class": "Owner",
"url_path": "\/users\/1",
"is_archived": false,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164616,
"created_by_id": 1,
"updated_on": 1430164616,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Ilija.studen",
"last_name": null,
"display_name": "ilija.studen",
"short_display_name": "ilija.studen",
"email": "ilija.studen@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=1&size=--SIZE--×tamp=1430164616",
"custom_permissions": [],
"company_id": 1,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
}
]To list all users, including archived and trashed ones, call /users/all:
Response: HTTP 200, application/json (Hide)
GET /users/all
Response:
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
[
{
"id": 1,
"class": "Owner",
"url_path": "\/users\/1",
"is_archived": false,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164616,
"created_by_id": 1,
"updated_on": 1430164616,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Ilija.studen",
"last_name": null,
"display_name": "ilija.studen",
"short_display_name": "ilija.studen",
"email": "ilija.studen@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=1&size=--SIZE--×tamp=1430164616",
"custom_permissions": [],
"company_id": 1,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
},
{
"id": 2,
"class": "Member",
"url_path": "\/users\/2",
"is_archived": true,
"is_trashed": false,
"trashed_on": null,
"trashed_by_id": 0,
"created_on": 1430164618,
"created_by_id": 1,
"updated_on": 1430164619,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Member1",
"last_name": null,
"display_name": "member1",
"short_display_name": "member1",
"email": "member1@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=2&size=--SIZE--×tamp=1430164619",
"custom_permissions": [],
"company_id": 0,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
},
{
"id": 3,
"class": "Member",
"url_path": "\/users\/3",
"is_archived": false,
"is_trashed": true,
"trashed_on": 1430164619,
"trashed_by_id": 1,
"created_on": 1430164618,
"created_by_id": 1,
"updated_on": 1430164619,
"updated_by_id": 1,
"language_id": 0,
"first_name": "Member2",
"last_name": null,
"display_name": "member2",
"short_display_name": "member2",
"email": "member2@activecollab.com",
"additional_email_addresses": [],
"is_pending_activation": false,
"avatar_url": "http:\/\/feather.dev\/proxy.php?proxy=avatar&module=system&v=current&b=DEV&user_id=3&size=--SIZE--×tamp=1430164619",
"custom_permissions": [],
"company_id": 0,
"title": null,
"phone": null,
"im_type": null,
"im_handle": null,
"note": null
}
]