Lorenzo
02/07/2025, 3:22 PMreplace
parameter, for example:
PATCH /services/rest/record/v1/salesOrder/123?replace=item
{
'item': {
'items': [
# new item lines with updated prices
]
}
}
It seems this creates new transaction lines, with new IDs. Does this mean that every update will add to our transaction line limit? Or are the deleted transaction lines not counted? AI gave me conflicting information.
(I know I could update the lines instead of replacing them by providing the IDs, but this will require some non-trivial changes on our side so I want to make sure it is actually necessary)