schedule api on list of things > goes to backend workflow to create the thing (iterates the list and runs for each item)
schedule api workflow = 0.5wu + search wu
add a new item to api scheduler = 0.1wu per item
server side workflow action = 0.6wu per item
create a thing in database = 0.5wu per item
approx 11 wu to create 10 things
bulk create is a viable alternative if you really want to reduce wu’s
unless you’re doing a lot of data copying there are more impactful ways to reduce wu costs in most apps
bulk create is also very limiting in that you cannot process each record individually - ie you can’t add multiple steps to the creation workflow and evaluate conditions etc per item. you can get around that with a database trigger I guess, but that has downsides as well (conditions evaluated every database change which can get costly)