deprecated
V2 - `from_estimate_id` in Customer Invoice
March 17th, 2025 by Integrations Squad
Response payload :
The from_estimate_id
attribute is deprecated in Customer Invoice endpoints response payload. Please rely on the estimate
object instead.
Example:
{
from_estimate_id: 42, # Deprecated
estimate: { id: 42 }
}
Filter key :
The from_estimate_id
filter is no longer available. You should use estimate_id
instead.
Example:
{
field: 'estimate_id',
operator: 'eq',
value: '42'
},