The Product Idea boards have gotten an update to better integrate them within our Product team's idea cycle! However this update does have a few unique behaviors, if you have any questions about them check out our FAQ.

Alteryx Server Ideas

Share your Server product ideas - we're listening!
Submitting an Idea?

Be sure to review our Idea Submission Guidelines for more information!

Submission Guidelines

Separate "Alteryx_Run" to "Manual" run and"Api" run

Today, when you trigger a job using the Server API, it is considered as a manual run type. In fact there are only 2 type of jobs : "Scheduled" and "Alteryx_Run"

I think "Alteryx_Run" should be segregated into "API_Run" and "Manual_Run". This way in future version we could treat those type of job differently. 

We could also have more stats around the type of jobs.

1 Comment
NicolasSz
11 - Bolide

The great @DavidSta gave me this solution for this :

 

IF (IsEmpty([AS_Schedules__ID])) THEN

                IF [IsAnonymous] THEN

                                "Gallery API"

                ELSE

                                "On-demand"

                ENDIF

ELSE

                IF [ClientType] == "Gallery" THEN

                                "Gallery Scheduler"

                ELSE

                                "Legacy Scheduler"

                ENDIF

ENDIF