I'm trying to use this feature so that I can supply links in an email that users can click on, thus optimising their flow for creating an issue. A URL such as this:
.../issues/new?issue[tracker_id]=7&issue[subject]=Example%20Subject&issue[custom_field_values][3]=1.2.4&issue[custom_field_values][6][]=Android&issue[custom_field_values][6][]=iOS&issue[priority_id]=5
works fine with the syntax of
issue[custom_field_values][6][]
working to specify multiple values for a custom field (the syntax was an educated guess).
However, when I try to specify the assignee with issue[assignee_id]
such as:
.../issues/new?issue[tracker_id]=7&issue[subject]=Example%20Subject&issue[custom_field_values][3]=1.2.4&issue[custom_field_values][6][]=Android&issue[custom_field_values][6][]=iOS&issue[priority_id]=5&issue[assignee_id]=2
or (in desperation):
.../issues/new?issue[tracker_id]=7&issue[subject]=Example%20Subject&issue[custom_field_values][3]=1.2.4&issue[custom_field_values][6][]=Android&issue[custom_field_values][6][]=iOS&issue[priority_id]=5&issue[user_id]=1
where 1 is a valid user id, it doesn't work. Am I missing something?
We are on a rather old version of Redmine (Redmine 2.4.2.stable) so can you advise if this was fixed in later versions or if I am doing something wrong?