Skip to main content

How to update nested JSON fields in a Member object using REST API calls?

Hey any chance anyone could help me fix my API call? I'm trying to update the Member JSON with the REST API. This is my current body for the update member API.

{
"json.linkedinAccount.linkedinAccount-1690067379691": {
"active": ["True"]
}
}
Any suggestions?

2 comments

  • Nicholas Platt
    Nicholas Platt

    What about this Patrick Hoban

    {
    "json": {
    "linkedinAccount": {
    "linkedinAccount-1690067379691": {
    "active": true
    }
    }
    }
    }
    0
  • Patrick Hoban
    Patrick Hoban OP

    Awesome! Thank you!

    0

Please sign in to leave a comment.

Sitemap