businesscentral

package module
v1.9.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 27, 2020 License: MIT Imports: 10 Imported by: 0

README

Business central go api

Generated client for the Microsoft Dynamics Business Central API.

Getting started

Using auth.NewEnvProvider() requires the following environment variables:

  • BC_CLIENT_ID: The Azure active directory app ClientId (app has delegated user BC permission)
  • BC_USERNAME: Your microsoft username (email), this user should be a BC admin
  • BC_PASSWORD: Your microsoft password
  • BC_TENANT_ID: The azure active directory app TenantId (should be same as your bc tenantId)

Setup the api once:

import (
	businesscentral "github.com/tcorp-bv/business-central-api-go"
	"github.com/tcorp-bv/business-central-api-go/auth"
)

func main() {
    api, err := businesscentral.NewWithEnvironmentDebug(auth.NewEnvProvider())
    if err != nil {
	    // handle error (eg environment variable missing)
    }
}

Example of calling the api:

ctx, _ := context.WithTimeout(context.Background(), 10 * time.Second)
res, _,  err := api.CompanyApi.ListCompanies(ctx, &openapi.ListCompaniesOpts{})
if err != nil {
	// handle err
}
for _, c := range res.Value {
	fmt.Printf("Company %s.\n", c*c.Name)
}

and in your go.mod:

github.com/tcorp-bv/business-central-api-go v1.6.0

Documentation

To see many examples of how to use the API, please see our integration tests.

Creating a new entity

Because the API is generated, any POST operation with a body takes a body interface{} parameter. You can simply pass the expected resource in here.

To create a customer for example:

customer := swagger.Customer{
	Number: testCustomerNumber,
	DisplayName: "Test Customer",
	Email: "asd@asd.be",
	PhoneNumber: "0412320312",
	Type_: "Person",
}
// You also need to provide "application/json" as the Content-Type
c, _, err := api.CustomerApi.PostCustomer(ctx, customer, "application/json", compId)
Date format

String dates should be formatted as YYYY-MM-DD.

Filtering

The API resources (invoices, customers, companies...) use their own unique identifier (different from the number identifier). This identifier is called Id.

Usually you want to find a resource by some other identifier (customer number...). To do that, you will need to use the list operation with a filter.

Here is an example:

filter := fmt.Sprintf("number eq '%s'", testCustomerNumber)
res, _, err := api.CustomerApi.ListCustomers(ctx, compId, &swagger.CustomerApiListCustomersOpts{Filter: optional.NewString(filter)})
for _, c := range res.Value {
	api.CustomerApi.DeleteCustomer(ctx, compId, c.Id) // we ignore the result of this, as it is just a cleanup
}

For more information on all the possible filters, see the Microsoft API guidelines.

Generating the client

Old method

To regenerate the swagger client (swagger/) execute the following command:

make generate

New method

You will notice that there is a problem with the dates: We hotpatch this with a custom script

./scripts/generate.sh

Business Central authentication

As we've wasted a lot of time getting to authenticate with the oauth for business central, I'll document the process here.

The API uses delegated AAD permissions. This means you must actually authenticate as a user. https://docs.microsoft.com/en-us/dynamics-nav/api-reference/v1.0/Because microsoft does not allow the creation of client secrets for this, you need to use the oauth "password" grant_type. This means the application will actually manage your username and password.

The app registry requires the https://dynamics.microsoft.com/business-central/overview/user_impersonation permission.

Files in the swagger directory are generated from the business central api specification. TCorp BV does not hold any rights over this specification and is not associated with Business Central.

Documentation

Index

Constants

View Source
const (

	// The company ID for TCorp (really not so smart to hardcode this but whatever)
	TCorp              = "253a6f6a-d6cf-4ee6-a9c4-86d18e7c397f"
	DefaultContentType = "application/json"
)
View Source
const (
	ErrorCodeInternal_EntityWithSameKeyExists = "Internal_EntityWithSameKeyExists"
)

Variables

This section is empty.

Functions

func AlreadyExists added in v1.4.0

func AlreadyExists(toParse error) bool

Check if a golang error is an Internal_EntityWithSameKeyExists error.

func New

func New(credentials auth.CredentialProvider) (*swagger.APIClient, error)

Get a new business central api instance pointing to the "production" environment.

func NewWithEnvironment

func NewWithEnvironment(credentials auth.CredentialProvider, environment string) (*swagger.APIClient, error)

Get a new api instance for the desired environment (usually "production" or "sandbox")

func NewWithEnvironmentDebug

func NewWithEnvironmentDebug(credentials auth.CredentialProvider, environment string, debug bool) (*swagger.APIClient, error)

Debugs logs all http request and responses, debug is currently not used

Types

type APIError added in v1.4.0

type APIError struct {
	Code    string `json:"code,omitempty"`
	Message string `json:"message,omitempty"`
}

func AsAPIError added in v1.4.0

func AsAPIError(toParse error) (APIError, error)

Parse a golang error to an APIError

type APIErrorJson added in v1.4.0

type APIErrorJson struct {
	Error *APIError `json:"error,omitempty"`
}

Directories

Path Synopsis
* Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
* Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) * Dynamics 365 Business Central * * Business Central Standard APIs * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL