Rest Users » History » Version 27
Mizuki ISHIKAWA, 2022-05-20 07:26
1 | 1 | Jean-Philippe Lang | h1. Users |
---|---|---|---|
2 | |||
3 | 3 | Jean-Philippe Lang | {{>toc}} |
4 | |||
5 | 7 | Jean-Philippe Lang | h2. /users.:format |
6 | 1 | Jean-Philippe Lang | |
7 | 7 | Jean-Philippe Lang | h3. GET |
8 | |||
9 | Returns a list of users. |
||
10 | |||
11 | 20 | Cyril Jouve | This endpoint requires admin privileges. |
12 | |||
13 | 7 | Jean-Philippe Lang | +Example+: |
14 | |||
15 | 1 | Jean-Philippe Lang | GET /users.xml |
16 | |||
17 | 10 | Jean-Baptiste Barth | Optional filters: |
18 | |||
19 | 25 | Martin von Wittich | * @status@: get only users with the given status. See "app/models/principal.rb":/projects/redmine/repository/entry/trunk/app/models/principal.rb#L22-25 for a list of available statuses. Supply an empty value to match all users regardless of their status. Default is @1@ (active users). Possible values are: |
20 | 13 | Go MAEDA | ** @1@: Active (User can login and use their account) |
21 | ** @2@: Registered (User has registered but not yet confirmed their email address or was not yet activated by an administrator. User can not login) |
||
22 | ** @3@: Locked (User was once active and is now locked, User can not login) |
||
23 | 10 | Jean-Baptiste Barth | * @name@: filter users on their login, firstname, lastname and mail ; if the pattern contains a space, it will also return users whose firstname match the first word or lastname match the second word. |
24 | * @group_id@: get only users who are members of the given group |
||
25 | |||
26 | 7 | Jean-Philippe Lang | h3. POST |
27 | 1 | Jean-Philippe Lang | |
28 | 7 | Jean-Philippe Lang | Creates a user. |
29 | 1 | Jean-Philippe Lang | |
30 | 20 | Cyril Jouve | This endpoint requires admin privileges. |
31 | |||
32 | 7 | Jean-Philippe Lang | +Parameters+: |
33 | 1 | Jean-Philippe Lang | |
34 | 7 | Jean-Philippe Lang | * @user@ (required): a hash of the user attributes, including: |
35 | 1 | Jean-Philippe Lang | |
36 | 7 | Jean-Philippe Lang | * @login@ (required): the user login |
37 | * @password@: the user password |
||
38 | * @firstname@ (required) |
||
39 | * @lastname@ (required) |
||
40 | * @mail@ (required) |
||
41 | * @auth_source_id@: authentication mode id |
||
42 | 12 | Matt Wiseley | * @mail_notification@: only_my_events, none, etc. |
43 | * @must_change_passwd@: true or false |
||
44 | 19 | F. P. | * @generate_password@: true or false |
45 | * @send_information@: true or false : Send acocunt information to the user |
||
46 | |||
47 | 1 | Jean-Philippe Lang | |
48 | 7 | Jean-Philippe Lang | +Example+: |
49 | 1 | Jean-Philippe Lang | |
50 | 17 | Toshi MARUYAMA | <pre> |
51 | 7 | Jean-Philippe Lang | POST /users.xml |
52 | 17 | Toshi MARUYAMA | </pre> |
53 | 1 | Jean-Philippe Lang | |
54 | 16 | Toshi MARUYAMA | <pre><code class="xml"> |
55 | 7 | Jean-Philippe Lang | <?xml version="1.0" encoding="ISO-8859-1" ?> |
56 | <user> |
||
57 | <login>jplang</login> |
||
58 | <firstname>Jean-Philippe</firstname> |
||
59 | <lastname>Lang</lastname> |
||
60 | <password>secret</password> |
||
61 | <mail>jp_lang@yahoo.fr</mail> |
||
62 | <auth_source_id>2</auth_source_id> |
||
63 | </user> |
||
64 | 16 | Toshi MARUYAMA | </code></pre> |
65 | 7 | Jean-Philippe Lang | |
66 | 8 | Lutz Horn | JSON |
67 | |||
68 | 16 | Toshi MARUYAMA | <pre><code class="json"> |
69 | 8 | Lutz Horn | { |
70 | "user": { |
||
71 | "login": "jplang", |
||
72 | "firstname": "Jean-Philippe", |
||
73 | "lastname": "Lang", |
||
74 | "mail": "jp_lang@yahoo.fr", |
||
75 | "password": "secret" |
||
76 | } |
||
77 | } |
||
78 | 16 | Toshi MARUYAMA | </code></pre> |
79 | 8 | Lutz Horn | |
80 | 7 | Jean-Philippe Lang | +Response+: |
81 | |||
82 | * @201 Created@: user was created |
||
83 | * @422 Unprocessable Entity@: user was not created due to validation failures (response body contains the error messages) |
||
84 | |||
85 | h2. /users/:id.:format |
||
86 | |||
87 | h3. GET |
||
88 | |||
89 | Returns the user details. You can use @/users/current.:format@ for retrieving the user whose credentials are used to access the API. |
||
90 | |||
91 | 21 | Cyril Jouve | This endpoint can be used by admin or non admin but the returned fields will depend on the privileges of the requesting user (see Response below). |
92 | 20 | Cyril Jouve | |
93 | 3 | Jean-Philippe Lang | +Parameters+: |
94 | 1 | Jean-Philippe Lang | |
95 | 23 | Go MAEDA | * @include@ (optional): a comma separated list of associations to include in the response: |
96 | 1 | Jean-Philippe Lang | |
97 | 11 | Jean-Baptiste Barth | * @memberships@ : adds extra information about user's memberships and roles on the projects |
98 | * @groups@ (added in 2.1) : adds extra information about user's groups |
||
99 | 1 | Jean-Philippe Lang | |
100 | 7 | Jean-Philippe Lang | +Examples+: |
101 | 1 | Jean-Philippe Lang | |
102 | 7 | Jean-Philippe Lang | GET /users/current.xml |
103 | |||
104 | Returns the details about the current user. |
||
105 | |||
106 | 1 | Jean-Philippe Lang | GET /users/3.xml?include=memberships,groups |
107 | |||
108 | Returns the details about user ID 3, and additional detail about the user's project memberships. |
||
109 | |||
110 | 18 | Toshi MARUYAMA | +Response+: |
111 | 1 | Jean-Philippe Lang | |
112 | 18 | Toshi MARUYAMA | <pre><code class="xml"> |
113 | 1 | Jean-Philippe Lang | <user> |
114 | <id>3</id> |
||
115 | <login>jplang</login> |
||
116 | <firstname>Jean-Philippe</firstname> |
||
117 | <lastname>Lang</lastname> |
||
118 | <mail>jp_lang@yahoo.fr</mail> |
||
119 | <created_on>2007-09-28T00:16:04+02:00</created_on> |
||
120 | 27 | Mizuki ISHIKAWA | <updated_on>2010-08-01T18:05:45+02:00</updated_on> |
121 | 1 | Jean-Philippe Lang | <last_login_on>2011-08-01T18:05:45+02:00</last_login_on> |
122 | 27 | Mizuki ISHIKAWA | <passwd_changed_on>2011-08-01T18:05:45+02:00</passwd_changed_on> |
123 | 14 | Go MAEDA | <api_key>ebc3f6b781a6fb3f2b0a83ce0ebb80e0d585189d</api_key> |
124 | 27 | Mizuki ISHIKAWA | <avatar_url></avatar_url> |
125 | 14 | Go MAEDA | <status>1</status> |
126 | 5 | Rick Mason | <custom_fields type="array" /> |
127 | 1 | Jean-Philippe Lang | <memberships type="array"> |
128 | 4 | Jean-Philippe Lang | <membership> |
129 | <project name="Redmine" id="1"/> |
||
130 | <roles type="array"> |
||
131 | <role name="Administrator" id="3"/> |
||
132 | <role name="Contributor" id="4"/> |
||
133 | 1 | Jean-Philippe Lang | </roles> |
134 | </membership> |
||
135 | </memberships> |
||
136 | <groups type="array"> |
||
137 | <group id="20" name="Developers"/> |
||
138 | </groups> |
||
139 | </user> |
||
140 | </code></pre> |
||
141 | 4 | Jean-Philippe Lang | |
142 | 21 | Cyril Jouve | If the user doing the request is not admin, it depends on the requested user: |
143 | |||
144 | 22 | Cyril Jouve | * if the user is not locked and is not admin, the endpoint returns a user object with the fields @firstname@, @lastname@, @mail@, @created_on@ |
145 | * if the user is not locked and is admin, the endpoint returns a user object with the fields @firstname@, @lastname@, @created_on@, @last_login_on@ |
||
146 | 21 | Cyril Jouve | * if the user is locked, the endpoint returns 404 status code |
147 | 22 | Cyril Jouve | * if the user is the requesting user, you will also have the fields @login@, @api_key@ |
148 | 21 | Cyril Jouve | |
149 | If the user doing the request is admin, a user object is always returned (blocked or not). It will have some more details: |
||
150 | 9 | Jean-Baptiste Barth | * @api_key@ : the API key of the user, visible for admins and for yourself (added in 2.3.0) |
151 | * @status@ : a numeric id representing the status of the user, visible for admins only (added in 2.4.0). See "app/models/principal.rb":/projects/redmine/repository/entry/trunk/app/models/principal.rb#L22-25 for a list of available statuses. |
||
152 | |||
153 | 7 | Jean-Philippe Lang | h3. PUT |
154 | 4 | Jean-Philippe Lang | |
155 | 7 | Jean-Philippe Lang | Updates a user. |
156 | 4 | Jean-Philippe Lang | |
157 | 20 | Cyril Jouve | This endpoint requires admin privileges. |
158 | |||
159 | 1 | Jean-Philippe Lang | +Example+: |
160 | |||
161 | 7 | Jean-Philippe Lang | PUT /users/20.xml |
162 | 1 | Jean-Philippe Lang | |
163 | +Parameters+: |
||
164 | |||
165 | * @user@ (required): a hash of the user attributes (same as for user creation) |
||
166 | 24 | Kenan Dervisevic | * @admin@ (optional): possible values are _true_ or _false_, gives user admin rights in the instance |
167 | 1 | Jean-Philippe Lang | |
168 | 7 | Jean-Philippe Lang | h3. DELETE |
169 | 20 | Cyril Jouve | |
170 | This endpoint requires admin privileges. |
||
171 | 1 | Jean-Philippe Lang | |
172 | 7 | Jean-Philippe Lang | Deletes a user. |
173 | 4 | Jean-Philippe Lang | |
174 | 7 | Jean-Philippe Lang | +Example+: |
175 | 1 | Jean-Philippe Lang | |
176 | 7 | Jean-Philippe Lang | DELETE /users/20.xml |
177 | 1 | Jean-Philippe Lang | |
178 | +Response+: |
||
179 | 4 | Jean-Philippe Lang | |
180 | 26 | Go MAEDA | * @204 No Content@: user was deleted |
181 | 7 | Jean-Philippe Lang | |
182 | h2. See also |
||
183 | |||
184 | * The [[Rest_Memberships|Memberships API]] for adding or removing a user from a project. |
||
185 | * The [[Rest_Groups|Groups API]] for adding or removing a user from a group. |