Invoice Line
Update
Update an existing Invoice Line record by ID.
put/api/cp/invoice-line/{id}
Path parameters
idinteger required
Id identifier
Request body
Example request
{
"id": 12345,
"invoice_id": 1,
"qty": 123,
"package_id": 1,
"description": "A detailed description of the resource",
"start_date": "2025-01-17T10:30:00Z",
"end_date": "2025-01-17T10:30:00Z",
"unit_price": 99.99,
"net": 99.99,
"tax": 99.99,
"sub_total": 10,
"attempts": 123,
"connected": 123,
"duration": 123,
"json": "Sample json text content"
}Response
Operation completed successfully
Example response
{
"status": "OK"
}