Microsoft Dynamics NAV · Example Payload

Navision Listsalesinvoices Example

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Navision Listsalesinvoices Example is an example object payload from Microsoft Dynamics NAV, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listSalesInvoices",
  "method": "GET",
  "path": "/companies({company_id})/salesInvoices",
  "summary": "List Sales Invoices",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listsalesinvoices200Example",
      "example": {
        "value": [
          {
            "id": "abc123",
            "number": "example_value",
            "externalDocumentNumber": "example_value",
            "invoiceDate": "2026-01-15",
            "postingDate": "2026-01-15",
            "dueDate": "2026-01-15",
            "customerId": "500123",
            "customerNumber": "example_value",
            "customerName": "example_value",
            "currencyCode": "example_value",
            "pricesIncludeTax": true,
            "totalAmountExcludingTax": 42.5,
            "totalTaxAmount": 42.5,
            "totalAmountIncludingTax": 42.5,
            "status": "Draft",
            "lastModifiedDateTime": "2026-01-15T10:30:00Z"
          }
        ]
      }
    }
  ]
}