hi there,
I have following json
[
{
"docname": [
"Coupa_Supplier_SB_Tax_Cert_PO_4501923290",
"Coupa_Supplier_SB_Tax_Cert_PO_450192323"
],
"id": 16758,
"docext": [
"pdf",
"pdf"
],
"IDOC": {
"@BEGIN": "1",
"EDI_DC40": {
"@SEGMENT": "1"
}
},
"docid": [
"FOL18 4 EXT48000000000776",
"FOL18 4 EXT480000000007236"
]
}
]
that i need to convert to
[
{
"attachments": [
{
"docname": "Coupa_Supplier_SB_Tax_Cert_PO_4501923290",
"id": 16758,
"docext": "pdf",
"docid": "FOL18 4 EXT48000000000776"
},
{
"docname": "Coupa_Supplier_SB_Tax_Cert_PO_450192323",
"id": 16758,
"docext": "pdf",
"docid": "FOL18 4 EXT480000000007236"
}
],
"IDOC": {
"@BEGIN": "1",
"EDI_DC40": {
"@SEGMENT": "1"
}
}
}
]
any help is greatly appreciated.
thanks
Manohar