Access to app/step data

Is there a way to get the step/cycle time data for apps?

Being able to get the steps out of Tulip with some of their meta data is important for the integration with our ERP. I don’t currently see an endpoint for this in the API.

@matte

What I’ve done is put a trigger in the base layout page on step enter that copies all the app info data regarding step name, version, most recently published version, step timer, etc.. into a tulip table.

I would advise you also grab the app id and save it to a variable as the default and save it to the table too. This way when you look back on the table you can reference your step names to the specific app id if you happen to change the app name at all.

Then you’ll need to run through all the steps in your app at least once to save them to the table.

From there you can use the table api to read from tulip into your erp.

Thanks @erikheckler! I was thinking something along those lines as well.

The only downside with this is that I only get app information to the ERP when someone first executes it. Ideally, would like to push work instruction info as soon as the app is published for capacity planning + more.

I will run with your approach for now though. Hopefully, the API for steps becomes public in the future.