Hi @tinok I built my data integration with the Kobo API in January 2018 so I’m not familiar with the new API.
I am wrote a script that grabs all the projects in my account from https://kc.kobotoolbox.org/api/v1/data
[
{
"id": 123,
"id_string": "a1b2c3",
"title": "project title",
"description": "project description",
"url": "https://kc.kobotoolbox.org/api/v1/data/123"
},
...
]
Then I wrote another script that would grab all the data submitted for a particular project using the id
returned from the first script https://kc.kobotoolbox.org/api/v1/data/123
. The script then looks for images the “_attachments” field.
In the new API, what does <kpiAssetID>
refer to? The project id?