version number that goes up by one each time the resource changes. You use it to update safely.
Why it matters
If two people — or two of your own processes — edit the same party at the same time, the second save could quietly wipe out the first. Theversion field prevents this: an update only succeeds if you’re working from the latest copy.
How to update
version returns:
Always send the
version from your most recent read — never a cached or hard-coded value.API version
The Finance API is at v1.1.0, which adds the payment-request settle, reverse, and update endpoints andPOLYGON as a supported chain.
Payment-request amounts are objects that carry both sides of the conversion —
{ "fiat": <number>, "crypto": "<string>" } — across amount, originalAmount, settlementAmount, settledAmount, and shortfallAmount. See Payment requests.Next steps
Update a party
Send the
version with your PATCH request.Safe retries with idempotency keys
The other half of safe writes — duplicate-proof creates.

