Invoice Service Item API

Get Invoice Service Items List
URL /ApiService.svc/InvoiceServiceItem/List/{invoiceId}
Method GET
Body

 

Response
[
    {
        "Count": 1.00000,
        "CustomPricePerUnit": 100.00000,
        "Description": "\"Onsite\" to \"Complete\" auto-calculated rate",
        "Id": 1,
        "InvoiceId": 1,
        "IsTaxable": false,
        "ServiceItemId": 2
    }

]

Comments

 

  Create Invoice Service Item
URL
/InvoiceServiceItem/Create
Method POST
Body
[
    {
         "Count":1,
         "CustomPricePerUnit":10,
         "ServiceItemId":1,
         "InvoiceId":1
    }
]
Response
[
   {
        "Count": 1,
        "CustomPricePerUnit": 10,
        "Description": "\"En Route\" to \"Onsite\" auto-calculated rate",
        "Id": 1,
        "InvoiceId": 1,
        "IsTaxable": false,
        "ServiceItemId": 1
   }
]
Comments