Updating Teams on an Account through API

I have been trying to update the Team an Account is assigned to through the API but it doesn't seem to update. Has anyone tried to do this?

Parents
  • Hi Robert,


    Are you trying to update team_id and team_set_id directly? or are you trying to update by using team_name?

    Locally, I was able to use team_name to pass the list of teams i want:

    PUT /Accounts/6cff862a-df96-11ed-843a-0242ac12000e

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    {
    team_name: [
    {id: "East", name: "East", name_2: "", primary: true, selected: false},
    {id: "1", name: "Global", name_2: "", primary: false, selected: false},
    {id: "West", name: "West"},
    ]
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Hope this helps

Reply
  • Hi Robert,


    Are you trying to update team_id and team_set_id directly? or are you trying to update by using team_name?

    Locally, I was able to use team_name to pass the list of teams i want:

    PUT /Accounts/6cff862a-df96-11ed-843a-0242ac12000e

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    {
    team_name: [
    {id: "East", name: "East", name_2: "", primary: true, selected: false},
    {id: "1", name: "Global", name_2: "", primary: false, selected: false},
    {id: "West", name: "West"},
    ]
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Hope this helps

Children
  • I am using team_name object but I was only setting the id field with the actually team id from the database. My next question is should I be using the name field instead of the id field?