Invoice Line
Create
Create a new Invoice Line record.
post/api/cp/invoice-line
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
Successful response
Example response
{
"id": 12345,
"status": "OK"
}