Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
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