Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2024 11:12 PM
Hi Team,
How can we achieve the following one?
Input:
{
"Language":"BE"
"status":"Ready"
"date":"2024-09-16"
},
{
"Language":"AT"
"status":"Ready"
"date":"2024-09-16"
},
{
"Language":"CA"
"status":"Cancelled"
"date":"2024-09-16"
}
expected output :
{
"entity_update": [{
"id": "abcd123",
"contexts": [{
"BE": [{
"status": "Ready",
"date": "2024-09-16"
}
],
"AT": [{
"status": "Ready",
"date": "2024-09-16"
}
],
"CA": [{
"status": "Cancelled",
"date": "2024-09-16"
}
]
}
]
}
]
}
Solved! Go to Solution.
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2024 12:37 AM
Reply
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2024 12:37 AM
Reply
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2024 01:18 AM
Hi @SpiroTaleski , Thanks a lot, it is working
