POST dealer/invoices

Get invoice detail by dealer and invoice id.

Request Information

Parameters

NameDescription
json
  • dealer [ Mandatory , string ]
    Dealer number , Length must be 5. A five-digit number, made up of a unique 4-digit numerical dealer number and a single digit 5th numerical digit that denotes department type. Or corresponding SapBpNumber, length must be 6.
  • key [ Mandatory , Guid ]
    Web service key. The dealer provided authorisation key. The key can be found by dealer.
  • ID [ Mandatory , int ]
    Invoice id (can get from the dealer/dealer_invoices api)

Request body formats

application/json, text/json, text/plain, application/x-www-form-urlencoded

Sample:
{
    "dealer" : "83289",
    "key" : "E4035643-CC50-4F46-ACC7-11599F159D07",
    "ID" : "838328"
}

Response Information

Response body formats

application/json, text/json

Sample:

{
  "Delivery": "98328",
  "Charge": "98328",
  "InvoiceNumber": "838328",
  "InvoiceDate": "20/07/16",
  "CompanyName": "HONDA DEALERSHIP",
  "Address1": "123 SOME STREET",
  "Address2": "SOMEPLACE",
  "Postcode": "5000",
  "CustomerABN": "84 123 456 789",
  "CustomerReference": "ABCD1234",
  "DeliveryDate": "20/07/16",
  "DeliveryMethod1": "STARTRACK - AIR",
  "DeliveryMethod2": "PHONE 13 23 45",
  "DeliveryNumber": "00000001",
  "DeliveryReference": "00000001",
  "OrderNumber": "01111111",
  "OrderDate": "13/07/16",
  "OrderType": "Daily",
  "OrderTypeName": "HOOS Quick Order",
  "HoosInvoiceItems": [
    {
      "LineNumber": "90",
      "PartNumber": "90321-MM5-000",
      "PartDescription": "NUT,CLIP,6MM",
      "PartQuantityOrdered": 6,
      "PartQuantityAllocated": 6,
      "PartQuantityBackorder": 0,
      "ListPrice": 6.31,
      "WholesalePrice": 4.73,
      "Extension": 28.38
    },
    {
      "LineNumber": "10",
      "PartNumber": "19300-KZ4-A90",
      "PartDescription": "ROD COMP,TIE",
      "PartQuantityOrdered": 1,
      "PartQuantityAllocated": 0,
      "PartQuantityBackorder": 1,
      "ListPrice": 59.54,
      "WholesalePrice": 0,
      "Extension": 0
    }
  ],
  "SubTotal": 28.38,
  "Gst": 2.84,
  "GrandTotal": 31.22
}
 
Or Bad Response:
The invoice source has malformed data. Please contact Honda Web services with your query settings.