Increasing number by 25% on list items. API Help

Hi,
I follow this post when creating a API workflow and has helped couple times before but today I struggle with something that seems to be easy.

I need to update a number within a Type called Chain Door by adding 25% to the value.

Created a backend workflow with a priceinc key set to number:

Set to change the price to match the price of priceinc:
Screenshot 2023-08-07 at 11.29.25

Used the current price item times 1.25

But the results are not changing per line item but rather a couple of them are the same:
Before:
Screenshot 2023-08-07 at 11.29.45
After:
Screenshot 2023-08-07 at 11.33.46

Perhaps this video can help

I replicated but doesn’t fix the issue. My fields are not updated individually but as a group updating to one value.

The way you have it setup is ideally how it would be done. Do you happen to have any database triggers that could be interfering?

Check logs to see what’s happening.

Try just passing the list to change & doing calculations on the backend instead of front.

Your 25increase API workflow needs a ‘Chain Door’ parameter of type ‘Chain Door’.

Your Schedule API workflow 25increase on a list will then show another parameter (Chain Door) which you should set to ‘This Chain Door’

Then, instead of make changes to a list of Chain Doors, you should have ‘Make changes to thing’ and change ‘Chain Door’ (the parameter from your API workflow). price = Chain Door’s price * priceinc (so for increase of 25% priceinc should be 1.25)

Not exactly your solution but I had to change a thing not a list of things and thing to change should be priceinc in my case.

Workflow
key: priceinc Type Chain Door
price = priceinc’s price * 1.25

Schedule
priceinc = This Chain Door