Hello! Does anyone know if deleted transaction lin...
# general
l
Hello! Does anyone know if deleted transaction lines still count towards the limit? We currently have an integration using the REST api where Sales Orders might be updated throughout the month (because the prices depend on changing variables) before being invoiced at the end of the month Right now we simply overwrite the sales orders item lines using the
replace
parameter, for example:
Copy code
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)