How to update nested JSON fields in a Member object using REST API calls? Answered
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?
Comments
2 comments
What about this Patrick Hoban
{"json": {
"linkedinAccount": {
"linkedinAccount-1690067379691": {
"active": true
}
}
}
}
Awesome! Thank you!
Please sign in to leave a comment.