Re: REST API Create User full_name vs Get User real_name in 5.2 documentation

David Miller <[email protected]> Wed, 5 Mar 2025 07:13:33 -0500
Newsgroups gmane.comp.mozilla.devel.webtools
Message-ID <[email protected]>
This is a multi-part message in MIME format.
--===============6142738376975692162==
Content-Type: multipart/alternative;
 boundary="------------zT0k0ZMlMXOiq9oBlWO3M08r"
Content-Language: en-US

This is a multi-part message in MIME format.
--------------zT0k0ZMlMXOiq9oBlWO3M08r
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: quoted-printable

I would consider this a bug.=C2=A0 The same item should have the same nam=
e=20
anywhere it's used.=C2=A0 The one currently getting returned in the respo=
nses=20
(real_name) should be the one we keep, because we can make both work for=20
create/update, but you can only have one for the response, and changing=20
it will break people that are using it already.


I filed https://bugzilla.mozilla.org/show_bug.cgi?id=3D1951920


On 3/5/25 12:35 AM, Carlo Barrientos wrote:
> In the 5.2=C2=A0 REST API=C2=A0 Get User, the JSON response uses key "r=
eal_name"=20
> (which shows up in the Administrators -> Users GUI in a column named=20
> "Real Name")
> But if "real_name" is used in JSON data for the REST API Create User ,=20
> the Create User ignores the "real_name" because it requires=20
> "full_name"=C2=A0to populate the "Real Name" column in the Administrato=
r ->=20
> Users search output;
> Is that intentional?=C2=A0 Because it makes copying a user from one=20
> bugzilla to another more difficult using the API because you have to=20
> map full_name to real_name depending on which User API you are using.
> At the very least,*=C2=A0the documentation should have a note about the=
=20
> different JSON keys for the same thing.*
>
>  *
>     *Carlo*
>
> 6.1.13.4.=C2=A0Create User=EF=83=81=20
> <https://bugzilla.readthedocs.io/en/5.2/api/core/v1/user.html#create-us=
er>
> Creates a user account directly in Bugzilla, password and all. Instead=20
> of this, you should use=C2=A0Offer Account by Email=C2=A0when possible =
because=20
> that makes sure that the email address specified can actually receive=20
> an email. This function does not check that. You must be authenticated=20
> and be in the /editusers/=C2=A0group to perform this action.
> *Request*
> POST /rest/user
> { "email" : "[email protected]", "*full_name*" : "Test User",=20
> "password" : "K16ldRr922I1" }
> name
> =09
> type
> =09
> description
> email
> =09
> string
> =09
> The email address for the new user.
> full_name
> =09
> string
> =09
> The user=E2=80=99s full name. Will be set to empty if not specified.
>
> 6.1.13.6.=C2=A0Get User=EF=83=81=20
> <https://bugzilla.readthedocs.io/en/5.2/api/core/v1/user.html#get-user>
> Gets information about user accounts in Bugzilla.
> Request
> To get information about a single user in Bugzilla:
> GET /rest/user/(id_or_name)
> GET /rest/user?match=3Dfoo
> To get user by using an integer ID value or by using |match|, you must=20
> be authenticated.
> name
> =09
> type
> =09
> description
> id_or_name
> =09
> mixed
> =09
> An integer user ID or login name of the user.
> ids
> =09
> array
> =09
> Integer user IDs. Logged=3Dout users cannot pass this parameter to this=
=20
> function. If they try, they will get an error. Logged=3Din users will=20
> get an error if they specify the ID of a user they cannot see.
>
> Response
>
>      o
>         users: (array) Each object describes a user and has the
>         following items:
>
> name
> =09
> type
> =09
> description
> id
> =09
> int
> =09
> The unique integer ID that Bugzilla uses to represent this user. Even=20
> if the user=E2=80=99s login name changes, this will not change.
> real_name
> =09
> string
> =09
> The actual name of the user. May be blank.
> email
> =09
> string
> =09
> The email address of the user.
> name
> =09
> string
> =09
> The login name of the user. Note that in some situations this is differ=
ent
>
>     {"users":[
>     =C2=A0 =C2=A0 {"name":"[email protected]",
>     =C2=A0 =C2=A0 =C2=A0"id":3,
>     =C2=A0 =C2=A0 =C2=A0"*real_name*":"Carlo iCloud",
>     =C2=A0 =C2=A0 =C2=A0"groups":[{"name":"bz_canusewhines","descriptio=
n":"User can
>     configure whine reports for
>     self","id":11},{"name":"editbugs","description":"Can edit all bug
>     fields","id":8}],
>     =C2=A0 =C2=A0 =C2=A0"can_login":true,
>     =C2=A0 =C2=A0 =C2=A0"email_enabled":true,
>     =C2=A0 =C2=A0 =C2=A0"login_denied_text":"",
>     =C2=A0 =C2=A0 =C2=A0"email":"[email protected]"
>     =C2=A0 =C2=A0 =C2=A0}
>     =C2=A0 ]
>     }
>
> =E2=80=82=E2=80=82=E2=80=82=E2=80=82=E2=80=82=E2=80=826.1.13.5.=C2=A0Up=
date User=EF=83=81=20
> <https://bugzilla.readthedocs.io/en/5.2/api/core/v1/user.html#update-us=
er>
> Updates an existing user account in Bugzilla. You must be=20
> authenticated and be in the /editusers/group to perform this action.
> Request
> PUT /rest/user/(id_or_name)
> You can edit a single user by passing the ID or login name of the user=20
> in the URL. To edit more than one user, you can specify addition IDs=20
> or login names using the |ids|=C2=A0or |names|=C2=A0parameters respecti=
vely.
> name
> =09
> type
> =09
> description
> id_or_name
> =09
> mixed
> =09
> Either the ID or the login name of the user to update.
> ids
> =09
> array
> =09
> Additional IDs of users to update.
> names
> =09
> array
> =09
> Additional login names of users to update.
> full_name
> =09
> string
> =09
> The new name of the user.
>
>
>
>
> _______________________________________________
> support-list mailing list
> [email protected]
> https://lists.bugzilla.org/listinfo/support-list
--=20
[Bugzilla Logo] =09
*Dave Miller*
Project Leader
*Bugzilla Project*
https://bugzilla.org/

--------------zT0k0ZMlMXOiq9oBlWO3M08r
Content-Type: multipart/related;
 boundary="------------9y73yHRTAuhCxJsr869ycydz"

--------------9y73yHRTAuhCxJsr869ycydz
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3DUTF=
-8">
  </head>
  <body>
    <p>I would consider this a bug.=C2=A0 The same item should have the s=
ame
      name anywhere it's used.=C2=A0 The one currently getting returned i=
n
      the responses (real_name) should be the one we keep, because we
      can make both work for create/update, but you can only have one
      for the response, and changing it will break people that are using
      it already.</p>
    <p><br>
    </p>
    <p>I filed <a class=3D"moz-txt-link-freetext" href=3D"https://bugzill=
a.mozilla.org/show_bug.cgi?id=3D1951920">https://bugzilla.mozilla.org/sho=
w_bug.cgi?id=3D1951920</a><br>
    </p>
    <p><br>
    </p>
    <div class=3D"moz-cite-prefix">On 3/5/25 12:35 AM, Carlo Barrientos
      wrote:<br>
    </div>
    <blockquote type=3D"cite"
cite=3D"mid:[email protected]=
.prod.outlook.com">
      <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3DU=
TF-8">
      <style type=3D"text/css" style=3D"display:none;">P {margin-top:0;ma=
rgin-bottom:0;}</style>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px; margin-left: 40px; font-family: Aptos, Aptos_EmbeddedFont, Apto=
s_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: =
rgb(0, 0, 0);">
        In the 5.2=C2=A0 REST API=C2=A0 Get User, the JSON response uses =
key
        "real_name" (which shows up in the Administrators -&gt; Users
        GUI in a column named "Real Name")=C2=A0</div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px; margin-left: 40px; font-family: Aptos, Aptos_EmbeddedFont, Apto=
s_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: =
rgb(0, 0, 0);">
        But if "real_name" is used in JSON data for the REST API Create
        User , the Create User ignores the "real_name" because it
        requires "full_name"=C2=A0to populate the "Real Name" column in t=
he
        Administrator -&gt; Users search output;</div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px; margin-left: 40px; font-family: Aptos, Aptos_EmbeddedFont, Apto=
s_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: =
rgb(0, 0, 0);">
        Is that intentional?=C2=A0 Because it makes copying a user from o=
ne
        bugzilla to another more difficult using the API because you
        have to map full_name to real_name depending on which User API
        you are using.</div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px; margin-left: 40px; font-family: Aptos, Aptos_EmbeddedFont, Apto=
s_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: =
rgb(0, 0, 0);">
        At the very least,<b>=C2=A0the documentation should have a note a=
bout
          the different JSON keys for the same thing.</b></div>
      <ul
data-editing-info=3D"{&quot;applyListStyleFromLevel&quot;:false,&quot;uno=
rderedStyleType&quot;:3}"
        style=3D"text-align: left; flex-direction: column; display: flex;=
">
        <li
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0); align-=
self: start; margin-left: 40px; list-style-type: &quot;=E2=88=8E &quot;;"=
>
          <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px;">
            <b>Carlo</b></div>
        </li>
      </ul>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px; margin-left: 40px; font-family: Aptos, Aptos_EmbeddedFont, Apto=
s_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt;">
        <span style=3D"color: rgb(0, 0, 0); font-weight: 700;">6.1.13.4.=C2=
=A0Create
          User</span><span
          style=3D"color: rgb(155, 89, 182); font-weight: 700;"><a
href=3D"https://bugzilla.readthedocs.io/en/5.2/api/core/v1/user.html#crea=
te-user"
            id=3D"OWA6966d3ee-6cff-8ed6-9256-be97ab280362"
            class=3D"headerlink OWAAutoLink"
            title=3D"Permalink to this heading"
style=3D"color: rgb(155, 89, 182); display: inline-block; margin-left: 0.=
5em;"
            moz-do-not-send=3D"true">=EF=83=81</a></span></div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        Creates a user account directly in Bugzilla, password and all.
        Instead of this, you should use=C2=A0Offer Account by Email=C2=A0=
when
        possible because that makes sure that the email address
        specified can actually receive an email. This function does not
        check that. You must be authenticated and be in the <i>editusers<=
/i>=C2=A0group
        to perform this action.</div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        <b>Request</b></div>
      <div
style=3D"margin: 1px 40px 24px; border-width: 1px; border-style: solid; b=
order-color: rgb(225, 228, 229);">
        <pre style=3D"margin: 0px; padding: 12px; display: block;"><div
        class=3D"elementToProof"
style=3D"text-align: left; line-height: 1.4; white-space: normal; font-fa=
mily: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica,=
 sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">POST /rest/user
</div></pre>
      </div>
      <div
style=3D"margin: 1px 40px 24px; border-width: 1px; border-style: solid; b=
order-color: rgb(225, 228, 229);">
        <pre style=3D"margin: 0px; padding: 12px; display: block;"><div
        class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 1.4; white-spac=
e: normal; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, C=
alibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">{
  "email" : <a class=3D"moz-txt-link-rfc2396E" href=3D"mailto:user@bugzil=
la.org">"[email protected]"</a>,
  "<span style=3D"color: rgb(237, 92, 87);"><b>full_name</b></span>" : "T=
est User",
  "password" : "K16ldRr922I1"
}
</div></pre>
      </div>
      <div
style=3D"margin-right: 40px; margin-bottom: 24px; margin-left: 40px; max-=
width: 100%;">
        <table class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; border-width: 1px; border-st=
yle: solid; border-color: rgb(225, 228, 229); margin-bottom: 24px; box-si=
zing: border-box; border-collapse: collapse; border-spacing: 0px;">
          <tbody>
            <tr>
              <th
style=3D"width: 93.4766px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: normal;">name</span></div>
              </th>
              <th
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: normal;">type</span></div>
              </th>
              <th
style=3D"width: 377.133px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: normal;">description</span>=
</div>
              </th>
            </tr>
            <tr>
              <td
style=3D"width: 93.4766px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bac=
kground-color: rgb(243, 246, 246); padding: 8px 16px; vertical-align: mid=
dle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  email</div>
              </td>
              <td
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  string</div>
              </td>
              <td
style=3D"width: 377.133px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  The email address for the new user.</div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 93.4766px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); pad=
ding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
237, 92, 87);">
                  full_name</div>
              </td>
              <td
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  string</div>
              </td>
              <td
style=3D"width: 377.133px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  The user=E2=80=99s full name. Will be set to empty if n=
ot
                  specified.</div>
              </td>
            </tr>
          </tbody>
        </table>
      </div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin: 0px 40px 24px; font-=
family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetic=
a, sans-serif; font-size: 10pt;">
        <span style=3D"color: rgb(0, 0, 0); font-weight: 700;">6.1.13.6.=C2=
=A0Get
          User</span><span
          style=3D"color: rgb(155, 89, 182); font-weight: 700;"><a
href=3D"https://bugzilla.readthedocs.io/en/5.2/api/core/v1/user.html#get-=
user"
            id=3D"OWAb459c23e-6181-51f9-eeb4-d804fff9dc93"
            class=3D"headerlink OWAAutoLink"
            title=3D"Permalink to this heading"
style=3D"color: rgb(155, 89, 182); display: inline-block; margin-left: 0.=
5em;"
            moz-do-not-send=3D"true">=EF=83=81</a></span></div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        <span style=3D"font-weight: 700;">Gets information about user
          accounts in Bugzilla.</span></div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        <span style=3D"font-weight: 700;">Request</span></div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        <span style=3D"font-weight: 700;">To get information about a
          single user in Bugzilla:</span></div>
      <div
style=3D"margin: 1px 40px 24px; border-width: 1px; border-style: solid; b=
order-color: rgb(225, 228, 229);">
        <pre style=3D"margin: 0px; padding: 12px; display: block;"><div
        class=3D"elementToProof"
style=3D"text-align: left; line-height: 1.4; white-space: normal; font-fa=
mily: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica,=
 sans-serif; font-size: 10pt; color: rgb(0, 0, 0);"><span
        style=3D"font-weight: 700;">GET /rest/user/(id_or_name)
</span></div></pre>
      </div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        <span style=3D"font-weight: 700;">GET /rest/user?match=3Dfoo </sp=
an></div>
      <div class=3D"elementToProof"
style=3D"margin: 1px 40px 24px; border-width: 1px; border-style: solid; b=
order-color: rgb(225, 228, 229); font-size: 10pt; color: rgb(0, 0, 0);">
        <span
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif; font-weight: 700;">To
          get user by using an integer ID value or by using
        </span><span
style=3D"font-family: SFMono-Regular, Menlo, Monaco, Consolas, &quot;Libe=
ration Mono&quot;, &quot;Courier New&quot;, Courier, monospace; font-weig=
ht: 700;"><code
style=3D"font-family: SFMono-Regular, Menlo, Monaco, Consolas, &quot;Libe=
ration Mono&quot;, &quot;Courier New&quot;, Courier, monospace;">match</c=
ode></span><span
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif; font-weight: 700;">,
          you must be authenticated.</span></div>
      <div
style=3D"margin-right: 40px; margin-bottom: 24px; margin-left: 40px; max-=
width: 100%;">
        <table class=3D"elementToProof" id=3D"table_1"
style=3D"text-align: left; text-indent: 0px; border-width: 1px; border-st=
yle: solid; border-color: rgb(225, 228, 229); margin-bottom: 24px; box-si=
zing: border-box; border-collapse: collapse; border-spacing: 0px;">
          <tbody>
            <tr>
              <th
style=3D"width: 136.969px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">name</span></div>
              </th>
              <th
style=3D"width: 82.5391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">type</span></div>
              </th>
              <th
style=3D"width: 1861.48px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">description</span></d=
iv>
              </th>
            </tr>
            <tr>
              <td
style=3D"width: 136.969px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bac=
kground-color: rgb(243, 246, 246); padding: 8px 16px; vertical-align: mid=
dle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">id_or_name</span></di=
v>
              </td>
              <td
style=3D"width: 82.5391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">mixed</span></div>
              </td>
              <td
style=3D"width: 1861.48px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">An integer user ID or
                    login name of the user.</span></div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 136.969px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); pad=
ding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">ids</span></div>
              </td>
              <td
style=3D"width: 82.5391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">array</span></div>
              </td>
              <td
style=3D"width: 1861.48px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">Integer user IDs.
                    Logged=3Dout users cannot pass this parameter to this
                    function. If they try, they will get an error.
                    Logged=3Din users will get an error if they specify
                    the ID of a user they cannot see.</span></div>
              </td>
            </tr>
          </tbody>
        </table>
      </div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 40px 24px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService=
, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">
        <span style=3D"font-weight: 700;">Response</span></div>
      <ul
style=3D"text-align: left; margin: 0px 0px 24px; padding-left: 0px; list-=
style-position: outside; list-style-type: initial;">
        <ul style=3D"list-style-type: circle;">
          <li
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rg=
b(0, 0, 0); margin-left: 24px; list-style-position: outside; list-style-t=
ype: initial;">
            <div style=3D"line-height: 24px; margin: 0px;">users: (array)
              Each object describes a user and has the following items:</=
div>
          </li>
        </ul>
      </ul>
      <div
style=3D"margin-right: 40px; margin-bottom: 24px; margin-left: 40px; max-=
width: 100%;">
        <table class=3D"elementToProof" id=3D"table_2"
style=3D"text-align: left; text-indent: 0px; border-width: 1px; border-st=
yle: solid; border-color: rgb(225, 228, 229); margin-bottom: 24px; box-si=
zing: border-box; border-collapse: collapse; border-spacing: 0px;">
          <tbody>
            <tr>
              <th
style=3D"width: 96.9609px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">name</span></div>
              </th>
              <th
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">type</span></div>
              </th>
              <th
style=3D"width: 760.07px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-width: 1px; border-style: solid; border-co=
lor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">description</span></d=
iv>
              </th>
            </tr>
            <tr>
              <td
style=3D"width: 96.9609px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bac=
kground-color: rgb(243, 246, 246); padding: 8px 16px; vertical-align: mid=
dle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">id</span></div>
              </td>
              <td
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">int</span></div>
              </td>
              <td
style=3D"width: 760.07px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bord=
er-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 24=
6); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">The unique integer ID
                    that Bugzilla uses to represent this user. Even if
                    the user=E2=80=99s login name changes, this will not =
change.</span></div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 96.9609px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); pad=
ding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
237, 92, 87);">
                  <span style=3D"font-weight: 700;">real_name</span></div=
>
              </td>
              <td
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">string</span></div>
              </td>
              <td
style=3D"width: 760.07px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bord=
er-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align:=
 middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">The actual name of th=
e
                    user. May be blank.</span></div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 96.9609px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bac=
kground-color: rgb(243, 246, 246); padding: 8px 16px; vertical-align: mid=
dle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">email</span></div>
              </td>
              <td
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">string</span></div>
              </td>
              <td
style=3D"width: 760.07px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bord=
er-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 24=
6); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">The email address of
                    the user.</span></div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 96.9609px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); pad=
ding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">name</span></div>
              </td>
              <td
style=3D"width: 67.5312px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">string</span></div>
              </td>
              <td
style=3D"width: 760.07px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bord=
er-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align:=
 middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MS=
FontService, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(=
0, 0, 0);">
                  <span style=3D"font-weight: 700;">The login name of the
                    user. Note that in some situations this is different<=
/span></div>
              </td>
            </tr>
          </tbody>
        </table>
      </div>
      <blockquote
style=3D"margin-left: 0.8ex; padding-left: 1ex; border-left: 3px solid rg=
b(200, 200, 200);">
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          {"users":[</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 {"name":<a class=3D"moz-txt-link-rfc2396E" href=3D=
"mailto:[email protected]">"[email protected]"</a>,</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"id":3,</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"<span style=3D"color: rgb(237, 92, 87);"><=
b>real_name</b></span>":"Carlo
          iCloud",</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"groups":[{"name":"bz_canusewhines","descri=
ption":"User
          can configure whine reports for
          self","id":11},{"name":"editbugs","description":"Can edit all
          bug fields","id":8}],</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"can_login":true,</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"email_enabled":true,</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"login_denied_text":"",</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0"email":<a class=3D"moz-txt-link-rfc2396E" =
href=3D"mailto:[email protected]">"[email protected]"</a></div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 =C2=A0 =C2=A0}</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          =C2=A0 ]</div>
        <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: normal; margin:=
 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibr=
i, Helvetica, sans-serif; font-size: 10pt; font-weight: 700; color: rgb(0=
, 0, 0);">
          }</div>
      </blockquote>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; margin-top: 0px; margin-bott=
om: 24px; margin-left: 0px; font-family: Aptos, Aptos_EmbeddedFont, Aptos=
_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt;">
        <span style=3D"color: rgb(0, 0, 0); font-weight: 700;">=E2=80=82=E2=
=80=82=E2=80=82=E2=80=82=E2=80=82=E2=80=826.1.13.5.=C2=A0Update
          User</span><span style=3D"color: rgb(155, 89, 182);"><a
href=3D"https://bugzilla.readthedocs.io/en/5.2/api/core/v1/user.html#upda=
te-user"
            id=3D"OWA890affff-19cb-59da-dbda-273381dbdf13"
            class=3D"headerlink OWAAutoLink"
            title=3D"Permalink to this heading"
style=3D"color: rgb(155, 89, 182); display: inline-block; margin-left: 0.=
5em;"
            moz-do-not-send=3D"true">=EF=83=81</a></span></div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 0px 24px 40px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontSer=
vice, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0=
);">
        Updates an existing user account in Bugzilla. You must be
        authenticated and be in the
        <i>editusers</i>group to perform this action.</div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 0px 24px 40px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontSer=
vice, Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0=
);">
        <span style=3D"font-weight: 700;">Request</span></div>
      <div
style=3D"margin: 1px 0px 24px; border-width: 1px; border-style: solid; bo=
rder-color: rgb(225, 228, 229);">
        <pre style=3D"margin: 0px; padding: 12px; display: block;"><div
        class=3D"elementToProof"
style=3D"text-align: left; line-height: 1.4; white-space: normal; margin-=
left: 40px; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, =
Calibri, Helvetica, sans-serif; font-size: 10pt; color: rgb(0, 0, 0);">PU=
T /rest/user/(id_or_name)
</div></pre>
      </div>
      <div class=3D"elementToProof"
style=3D"text-align: left; text-indent: 0px; line-height: 24px; margin: 0=
px 0px 24px 40px; font-size: 10pt; color: rgb(0, 0, 0);">
        <span
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif;">You
          can edit a single user by passing the ID or login name of the
          user in the URL. To edit more than one user, you can specify
          addition IDs or login names using the </span><span
style=3D"font-family: SFMono-Regular, Menlo, Monaco, Consolas, &quot;Libe=
ration Mono&quot;, &quot;Courier New&quot;, Courier, monospace;"><code
style=3D"font-family: SFMono-Regular, Menlo, Monaco, Consolas, &quot;Libe=
ration Mono&quot;, &quot;Courier New&quot;, Courier, monospace;">ids</cod=
e></span><span
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif;">=C2=A0or
        </span><span
style=3D"font-family: SFMono-Regular, Menlo, Monaco, Consolas, &quot;Libe=
ration Mono&quot;, &quot;Courier New&quot;, Courier, monospace;"><code
style=3D"font-family: SFMono-Regular, Menlo, Monaco, Consolas, &quot;Libe=
ration Mono&quot;, &quot;Courier New&quot;, Courier, monospace;">names</c=
ode></span><span
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif;">=C2=A0parameters
          respectively.</span></div>
      <div style=3D"margin-bottom: 24px; max-width: 100%;">
        <table class=3D"elementToProof" id=3D"table_0"
style=3D"text-align: left; text-indent: 0px; border-width: 1px; border-st=
yle: solid; border-color: rgb(225, 228, 229); margin-bottom: 24px; box-si=
zing: border-box; border-collapse: collapse; border-spacing: 0px;">
          <tbody>
            <tr>
              <th
style=3D"width: 117.68px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-width: 1px; border-style: solid; border-co=
lor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  <span style=3D"font-weight: 700;">name</span></div>
              </th>
              <th
style=3D"width: 74.6875px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  <span style=3D"font-weight: 700;">type</span></div>
              </th>
              <th
style=3D"width: 389.391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-width: 1px; border-style: solid; border-c=
olor: rgb(225, 228, 229); padding: 8px 16px; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  <span style=3D"font-weight: 700;">description</span></d=
iv>
              </th>
            </tr>
            <tr>
              <td
style=3D"width: 117.68px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); back=
ground-color: rgb(243, 246, 246); padding: 8px 16px; vertical-align: midd=
le; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  <span style=3D"font-weight: 700;">id_or_name</span></di=
v>
              </td>
              <td
style=3D"width: 74.6875px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  mixed</div>
              </td>
              <td
style=3D"width: 389.391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  Either the ID or the login name of the user to update.<=
/div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 117.68px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); padd=
ing: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  <span style=3D"font-weight: 700;">ids</span></div>
              </td>
              <td
style=3D"width: 74.6875px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  array</div>
              </td>
              <td
style=3D"width: 389.391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  Additional IDs of users to update.</div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 117.68px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); back=
ground-color: rgb(243, 246, 246); padding: 8px 16px; vertical-align: midd=
le; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  <span style=3D"font-weight: 700;">names</span></div>
              </td>
              <td
style=3D"width: 74.6875px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  array</div>
              </td>
              <td
style=3D"width: 389.391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); background-color: rgb(243, 246, 2=
46); padding: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  Additional login names of users to update.</div>
              </td>
            </tr>
            <tr>
              <td
style=3D"width: 117.68px; height: 33px; text-align: left; text-indent: 0p=
x; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); padd=
ing: 8px 16px; vertical-align: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt=
; color: rgb(237, 92, 87);">
                  full_name</div>
              </td>
              <td
style=3D"width: 74.6875px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  string</div>
              </td>
              <td
style=3D"width: 389.391px; height: 33px; text-align: left; text-indent: 0=
px; white-space: nowrap; border-bottom: 1px solid rgb(225, 228, 229); bor=
der-left: 1px solid rgb(225, 228, 229); padding: 8px 16px; vertical-align=
: middle; box-sizing: border-box;">
                <div
style=3D"text-align: left; text-indent: 0px; line-height: 1rem; white-spa=
ce: nowrap; margin: 0px 0px 0px 40px; font-family: Aptos, Aptos_EmbeddedF=
ont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 10pt=
; color: rgb(0, 0, 0);">
                  The new name of the user.</div>
              </td>
            </tr>
          </tbody>
        </table>
      </div>
      <div class=3D"elementToProof"
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
        <br>
      </div>
      <div class=3D"elementToProof"
style=3D"font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Cal=
ibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
        <br>
      </div>
      <br>
      <fieldset class=3D"moz-mime-attachment-header"></fieldset>
      <pre wrap=3D"" class=3D"moz-quote-pre">____________________________=
___________________
support-list mailing list
<a class=3D"moz-txt-link-abbreviated" href=3D"mailto:support-list@bugzill=
a.org">[email protected]</a>
<a class=3D"moz-txt-link-freetext" href=3D"https://lists.bugzilla.org/lis=
tinfo/support-list">https://lists.bugzilla.org/listinfo/support-list</a>
</pre>
    </blockquote>
    <div class=3D"moz-signature">-- <br>
      <meta http-equiv=3D"content-type" content=3D"text/html; charset=3DU=
TF-8">
      <title></title>
    </div>
    <div class=3D"moz-signature"
      signature-switch-id=3D"b0b24bd1-735c-4a02-9f5d-e2b2e9b4f40d">
      <div>
        <table style=3D"width: 300px; border-style: none;"
          cellpadding=3D"3px" border=3D"0px">
          <tbody>
            <tr>
              <td style=3D"width: 106px;"><img alt=3D"[Bugzilla Logo]"
                  src=3D"cid:[email protected]"
                  width=3D"100" height=3D"100"></td>
              <td>
                <div><strong><span style=3D"font-size: 13pt;">Dave Miller=
</span></strong></div>
                <div>Project Leader</div>
                <div><strong>Bugzilla Project</strong></div>
                <div><a href=3D"https://bugzilla.org/"
rel=3D"nofollow
                    noopener noreferrer" target=3D"_blank"
                    class=3D"moz-txt-link-freetext">https://bugzilla.org/=
</a></div>
              </td>
            </tr>
          </tbody>
        </table>
      </div>
    </div>
  </body>
</html>
--------------9y73yHRTAuhCxJsr869ycydz
Content-Type: image/png; name="UTXUQG4UCKndnb3e.png"
Content-Disposition: inline; filename="UTXUQG4UCKndnb3e.png"
Content-Id: <[email protected]>
Content-Transfer-Encoding: base64

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
gg==

--------------9y73yHRTAuhCxJsr869ycydz--

--------------zT0k0ZMlMXOiq9oBlWO3M08r--

--===============6142738376975692162==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
support-list mailing list
[email protected]
https://lists.bugzilla.org/listinfo/support-list

--===============6142738376975692162==--