We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

API question

jillv
7 - Meteor

Hi folks,

 

I've been checking other use cases but I feel I have something wrong with my workflow. If let's say I have three items I want to retrieve, I should see the highlighted below to show 1, 2, 3, right?. But in my below pull, everything shows 0. Could someone please advise what is the correct way to pull? 

 

I have attached a sample workflow. Thank you! 

 

jillv_0-1676051341233.png

 

1 REPLY 1
Felipe_Ribeir0
16 - Nebula

Hi @jillv 

 

These numbers are being generated by alteryx when you use the Parse tool. You have 3 records to parse, so it is basically saying "for this record, this is the first time (0) that the figi/name/ticker appears". You just have 1 occurrence for each record, so it will always be 0.

 

0.data.0.figi
0.data.0.name
0.data.0.ticker

 

What i like to do is removing the first part (0.data.0.) before transposing, so you get the real name of the column. 

 

Felipe_Ribeir0_0-1676052470462.png

 

You made 3 api calls, right? you got 3 rows as response.

Labels
Top Solution Authors