action kumpeapps_kkid_userlist_post { label: "adds new child user" description: "By passing in the appropriate variables this method creates a new user and assigns it to the master account of the authenticated user. By default this user will have chores and allowance access.\n" provider: kumpeapps method: POST path: "/kkid/userlist" encoding: json input: { type: "object" properties: { email: { type: "string" } firstName: { type: "string" } lastName: { type: "string" } password: { type: "string" format: "password" } username: { type: "string" } } required: ["email", "firstName", "lastName", "password", "username"] additionalProperties: false } output: { type: "object" description: "add user" properties: { added: { type: "string" } aff_added: { type: "string" } aff_id: { type: "string" } aff_payout_type: { type: "string" } avatar: { type: "string" } city: { type: "string" } comment: { type: "string" } country: { type: "string" } disable_lock_until: { type: "string" } email: { type: "string" } i_agree: { type: "string" } is_affiliate: { type: "string" } is_locked: { type: "string" } lang: { type: "string" } last_login: { type: "string" } login: { type: "string" } name_f: { type: "string" } name_l: { type: "string" } pass: { type: "string" } pass_dattm: { type: "string" } phone: { type: "string" } pin: { type: "string" } plain_password: { type: "string" } remember_key: { type: "string" } remote_addr: { type: "string" } require_consent: { type: "string" } reseller_id: { type: "string" } saved_form_id: { type: "string" } state: { type: "string" } status: { type: "string" } street: { type: "string" } street2: { type: "string" } subusers_parent_id: { type: "string" } tax_id: { type: "string" } unsubscribed: { type: "string" } user_agent: { type: "string" } user_id: { type: "integer" } zip: { type: "string" } } } }