Forum Discussion
I am nearly there with my pipeline however I now have “nested” JSON, that is the first set of JSON returned by the API and the variables. Is there a way to flaten so that I have a single level of JSON?
I now have:
{
“number”:“RITM123456”,
“etc:123”,
variables : {
“Auto ID : 123”
“Autoversion ID : 345”
“Autoname : SQL stuff”
}
}
And I would like
{
“number”:“RITM123456”,
“etc:123”,
“Auto ID : 123”
“Autoversion ID : 345”
“Autoname : SQL stuff”
}
}
- SpiroTaleski4 years agoValued Contributor
With the SnapLogic List Snap, you can list all tasks from the given project.
Then, using a downstream SnapLogic Read Snap, you can read each task separately(by providing the path of each Task):
That will returns you details about each task.
Regards,
Spiro Taleski@Spiro_Taleski @bojanvelevski
Thanks much for you help, this been very useful.