Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

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