Changes between Version 62 and Version 63 of WebRpc


Ignore:
Timestamp:
Oct 26, 2018, 9:06:55 AM (5 years ago)
Author:
skwang
Comment:

Add new consent RPC options to create_account and am_set_info

Legend:

Unmodified
Added
Removed
Modified
  • WebRpc

    v62 v63  
    212212 [ invite_code ]:: Invitation code if project requires invitation to create accounts.
    213213 [ team_name ]:: optional name of a team to put user in.
     214 [ consent_flag ] :: optional - If true, sets the consent_flag to 1. If false the consent_flag is set to 0 and consent_not_required is set to 1. See [[https://boinc.berkeley.edu/trac/wiki/UserOptInConsent#RPC|UserOptInConsent]] for discussion.
     215 [ source ] :: optional - Set the source of who is setting consent, e.g., 'manager' or 'web'. See [[https://boinc.berkeley.edu/trac/wiki/UserOptInConsent#RPC|UserOptInConsent]] for discussion.
    214216
    215217 example::
     
    324326        [ email_addr ]::
    325327        [ password_hash ]:: The password hash is MD5(password+lower_case(email_addr)).
     328        [ consent_name ] :: This is the 'shortname' of the consent_type to modify.
     329        [ consent_flag ] :: Sets the consent_flag to 0 or 1.
     330        [ consent_not_required ] :: Sets the consent_not_required flag to 0 or 1.
     331        [ consent_source ] :: The source of the consent change, most likely the account manager name, e.g. '!GridRepublic'.
     332
    326333 output::
    327334       
     
    335342NOTE: because the arguments of am_set_info can potentially be very long,
    336343it's also available as a HTTP POST transaction, with the same arguments.
     344
     345For more information on the four consent related parameters, see [[https://boinc.berkeley.edu/trac/wiki/UserOptInConsent#RPC|UserOptInConsent]].
    337346
    338347----