• Resolved PDidee

    (@pdidee)


    Have a client using Infusionsoft HTTP post to push new users and assign roles. Is there a specific Name/Value pairing to assign a group to a user?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Robin W

    (@robin-w)

    it is done with php code

    single group eg add to group 1 for user 72

    
    $user_id = '72' ;
    update_user_meta( $user_id, 'private_group', '*group1*');
    

    or multiple groups eg add to group 1 and group 6

    update_user_meta( $user_id, 'private_group', '*group1*group6*');

    • This reply was modified 5 years, 2 months ago by Robin W.
    Thread Starter PDidee

    (@pdidee)

    Thanks Robin I’ll give this a shot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Infusionsoft HTTP Post’ is closed to new replies.