Hi Team,
I've been using the below API to retrieve all the dataset name/id's but I've noticed that its not returning the complete list of datasets. Can you please help me with the API which will return all the dataset?
GET: https://platform.adobe.io/data/foundation/catalog/dataSets
Solved! Go to Solution.
Views
Replies
Total Likes
@shubham10 I just ran a test and it works but I don't have a very high number of dataset in our Support sandbox, I would have thought the limit was 100 in any case. How many datasets are you trying to list out of curiosity?
Also tested using the pagination options listed in here:
GET https://platform.adobe.io/data/foundation/catalog/dataSets?start=0&limit=10 would give you the first 10 results
GET https://platform.adobe.io/data/foundation/catalog/dataSets?start=1&limit=10 would give you the next 10 .. and so on
Hope that helps.
@shubham10 I just ran a test and it works but I don't have a very high number of dataset in our Support sandbox, I would have thought the limit was 100 in any case. How many datasets are you trying to list out of curiosity?
Also tested using the pagination options listed in here:
GET https://platform.adobe.io/data/foundation/catalog/dataSets?start=0&limit=10 would give you the first 10 results
GET https://platform.adobe.io/data/foundation/catalog/dataSets?start=1&limit=10 would give you the next 10 .. and so on
Hope that helps.
@Tof_Jossic Thank you. It works for me