I have a REST API that outputs JSON data similar to this example:
{
"GroupIds": [
"1234",
"2345",
"3456",
"4567"
],
"Id": "w5a19-a493-bfd4-0a0c8djc05",
"Name": "Test Item",
"Description": "test item description",
"Notes": null,
"ExternalId": null,
"ExpiryDate": null,
"ActiveStatus": 0,
"TagIds": [
"784083-4c77-b8fb-0135046c",
"86de96-44c1-a497-0a308607",
"7565aa-437f-af36-8f9306c9",
"d5d841-1762-8c14-d8420da2",
"bac054-2b6e-a19b-ef5b0b0c"
],
"ResourceIds": []
}
Using ADF, I want to parse through this JSON object and insert a row for each value in the GroupIds array along with the objects Id and Name... So ultimately the above JSON should translate to a table like this:
| GroupID | Id | Name |
|---|---|---|
| 1234 | w5a19-a493-bfd4-0a0c8djc05 | Test Item |
| 2345 | w5a19-a493-bfd4-0a0c8djc05 | Test Item |
| 3456 | w5a19-a493-bfd4-0a0c8djc05 | Test Item |
| 4567 | w5a19-a493-bfd4-0a0c8djc05 | Test Item |
Is there some configuration I can use in the Copy Activity settings to accomplish this?





