A

ADP Workforce Now Next Generation

ADP Workforce Now Next Generation connector for Ductor — available as both a trigger and a destination.

Hr
1
Actions
0
Triggers

Example

A complete route that uses ADP Workforce Now Next Generation — an input is matched, scored by a strategy, assigned, and dispatched to ADP Workforce Now Next Generation.

type == "lead"key →TriggerNew LeadWebhookAssignmulti_objective_scoreStrategysales-teamassignedadp_workforce_now_next_genActionDelivered
Show the code
// Route a new lead to the right owner and open the record.
engine.Route(ductor.Route{
Match: `routable.type == "lead"`,
Strategy: "multi_objective_score",
Pool: "sales-team",
Then: ductor.Workflow{
Mode: ductor.Async,
Steps: ductor.Steps{
ductor.Connector("adp_workforce_now_next_gen", "run"),
},
},
})
 
// Durable, observable, exactly-once.
decision, err := engine.Dispatch(ctx, routable)

What you can build

Route by rule

Match any input with CEL and send it to the right pool.

Fan out to many

Scatter to several connectors and gather the results.

Trigger a workflow

Kick off a sync or async workflow on every routed item.

Authentication

OAuth2 client credentialsNo auth

Credentials are stored AEAD-encrypted at rest — usable by the engine, never readable back.

Actions

No actions on this connector.