microsoft.dynamics365.finance.system
Module microsoft.dynamics365.finance.system
API
Definitions
ballerinax/microsoft.dynamics365.finance.system Ballerina library
Overview
Microsoft Dynamics 365 Finance is Microsoft's cloud ERP solution for financial management, covering general ledger, accounts receivable and payable, fixed assets, budgeting, cash and bank management, and tax.
The microsoft.dynamics365.finance.system connector provides access to Microsoft Dynamics 365 Finance System entities via the OData REST API.
Key Features
- Manage system entities in Microsoft Dynamics 365 Finance
- Support for list, create, read, update, and delete operations
- OAuth2 client credentials authentication
Setup guide
Prerequisites
- A Microsoft Dynamics 365 Finance & Operations environment (cloud-hosted or sandbox)
- An Azure Active Directory (Entra ID) app registration with API permissions for Dynamics 365
Step 1: Register an application in Azure AD
-
Sign in to the Azure portal and navigate to Azure Active Directory → App registrations → New registration.
-
Give the application a name, select the appropriate account type, and click Register.
-
Note the Application (client) ID and Directory (tenant) ID from the overview page.
-
Under Certificates & secrets, create a new client secret and note the value immediately — it is only shown once.
Step 2: Grant Dynamics 365 API permissions
-
In the app registration, go to API permissions → Add a permission → APIs my organization uses.
-
Search for Dynamics 365 (or
Microsoft Dynamics ERP) and add theuser_impersonation(or.default) delegated/application scope. -
Click Grant admin consent for your tenant.
Step 3: Add the app as a D365 user
-
In your D365 Finance environment, go to System administration → Users → New.
-
Set the User ID and User name, then paste the Azure AD Application (client) ID into the Azure AD application field.
-
Assign appropriate security roles and save.
Quickstart
To use the microsoft.dynamics365.finance.system connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/microsoft.dynamics365.finance.system;
Step 2: Instantiate a new connector
configurable string tenantId = ?; configurable string clientId = ?; configurable string clientSecret = ?; configurable string serviceUrl = ?; // e.g. "https://<env>.operations.dynamics.com/data" system:Client cl = check new ({ config = { auth: { tokenUrl: string `https://login.microsoftonline.com/${tenantId}/oauth2/v2.0/token`, clientId, clientSecret, scopes: [string `${serviceUrl}/.default`] } }, serviceUrl );
Step 3: Invoke the connector operation
system:AbbreviationsCollection results = check cl->listAbbreviations();
Step 4: Run the Ballerina application
bal run
Examples
The Dynamics 365 Finance Ballerina connectors provide practical examples illustrating usage in various scenarios. Explore these examples.
Clients
microsoft.dynamics365.finance.system: Client
Constructor
Gets invoked to initialize the connector.
init (ConnectionConfig config, string serviceUrl)- config ConnectionConfig - The configurations to be used when initializing the
connector
- serviceUrl string "https://your-org.operations.dynamics.com/data" - URL of the target service
listAbbreviations
function listAbbreviations(map<string|string[]> headers, *ListAbbreviationsQueries queries) returns AbbreviationsCollection|errorList Abbreviations
Parameters
- queries *ListAbbreviationsQueries - Queries to be sent with the request
Return Type
- AbbreviationsCollection|error - Collection of Abbreviations
createAbbreviations
function createAbbreviations(Abbreviations payload, map<string|string[]> headers) returns Abbreviations|errorCreate Abbreviations
Parameters
- payload Abbreviations - The request body
Return Type
- Abbreviations|error - Abbreviations created
getAbbreviations
function getAbbreviations(string addrTypeCode, map<string|string[]> headers, *GetAbbreviationsQueries queries) returns Abbreviations|errorGet Abbreviations by key
Parameters
- addrTypeCode string - The addr type code key field
- queries *GetAbbreviationsQueries - Queries to be sent with the request
Return Type
- Abbreviations|error - Abbreviations
deleteAbbreviations
function deleteAbbreviations(string addrTypeCode, DeleteAbbreviationsHeaders headers) returns error?Delete Abbreviations
Parameters
- addrTypeCode string - The addr type code key field
- headers DeleteAbbreviationsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Abbreviations deleted
updateAbbreviations
function updateAbbreviations(string addrTypeCode, Abbreviations payload, UpdateAbbreviationsHeaders headers) returns Abbreviations|errorUpdate Abbreviations
Parameters
- addrTypeCode string - The addr type code key field
- payload Abbreviations - The request body
- headers UpdateAbbreviationsHeaders (default {}) - Headers to be sent with the request
Return Type
- Abbreviations|error - Abbreviations updated
listAllProducts
function listAllProducts(map<string|string[]> headers, *ListAllProductsQueries queries) returns AllProductsCollection|errorList AllProducts
Parameters
- queries *ListAllProductsQueries - Queries to be sent with the request
Return Type
- AllProductsCollection|error - Collection of EveryProduct
createAllProducts
function createAllProducts(EveryProduct payload, map<string|string[]> headers) returns EveryProduct|errorCreate EveryProduct
Parameters
- payload EveryProduct - The request body
Return Type
- EveryProduct|error - EveryProduct created
getAllProducts
function getAllProducts(string productNumber, map<string|string[]> headers, *GetAllProductsQueries queries) returns EveryProduct|errorGet EveryProduct by key
Parameters
- productNumber string - The product number key field
- queries *GetAllProductsQueries - Queries to be sent with the request
Return Type
- EveryProduct|error - EveryProduct
deleteAllProducts
function deleteAllProducts(string productNumber, DeleteAllProductsHeaders headers) returns error?Delete EveryProduct
Parameters
- productNumber string - The product number key field
- headers DeleteAllProductsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - EveryProduct deleted
updateAllProducts
function updateAllProducts(string productNumber, EveryProduct payload, UpdateAllProductsHeaders headers) returns EveryProduct|errorUpdate EveryProduct
Parameters
- productNumber string - The product number key field
- payload EveryProduct - The request body
- headers UpdateAllProductsHeaders (default {}) - Headers to be sent with the request
Return Type
- EveryProduct|error - EveryProduct updated
listCFPSTable
function listCFPSTable(map<string|string[]> headers, *ListCFPSTableQueries queries) returns CFPSTableCollection|errorList CFPSTable
Parameters
- queries *ListCFPSTableQueries - Queries to be sent with the request
Return Type
- CFPSTableCollection|error - Collection of CFPSTable
createCFPSTable
Create CFPSTable
Parameters
- payload CFPSTable - The request body
getCFPSTable
function getCFPSTable(string dataAreaId, string transactionType, string cFPSCode, map<string|string[]> headers, *GetCFPSTableQueries queries) returns CFPSTable|errorGet CFPSTable by key
Parameters
- dataAreaId string - The company data area identifier
- transactionType string - The transaction type key field
- cFPSCode string - The c fps code key field
- queries *GetCFPSTableQueries - Queries to be sent with the request
deleteCFPSTable
function deleteCFPSTable(string dataAreaId, string transactionType, string cFPSCode, DeleteCFPSTableHeaders headers) returns error?Delete CFPSTable
Parameters
- dataAreaId string - The company data area identifier
- transactionType string - The transaction type key field
- cFPSCode string - The c fps code key field
- headers DeleteCFPSTableHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - CFPSTable deleted
updateCFPSTable
function updateCFPSTable(string dataAreaId, string transactionType, string cFPSCode, CFPSTable payload, UpdateCFPSTableHeaders headers) returns CFPSTable|errorUpdate CFPSTable
Parameters
- dataAreaId string - The company data area identifier
- transactionType string - The transaction type key field
- cFPSCode string - The c fps code key field
- payload CFPSTable - The request body
- headers UpdateCFPSTableHeaders (default {}) - Headers to be sent with the request
listComponents
function listComponents(map<string|string[]> headers, *ListComponentsQueries queries) returns ComponentsCollection|errorList Components
Parameters
- queries *ListComponentsQueries - Queries to be sent with the request
Return Type
- ComponentsCollection|error - Collection of Component
createComponents
Create Component
Parameters
- payload Component - The request body
getComponents
function getComponents(string dataAreaId, string taxComponent, string taxType, map<string|string[]> headers, *GetComponentsQueries queries) returns Component|errorGet Component by key
Parameters
- dataAreaId string - The company data area identifier
- taxComponent string - The tax component key field
- taxType string - The tax type key field
- queries *GetComponentsQueries - Queries to be sent with the request
deleteComponents
function deleteComponents(string dataAreaId, string taxComponent, string taxType, DeleteComponentsHeaders headers) returns error?Delete Component
Parameters
- dataAreaId string - The company data area identifier
- taxComponent string - The tax component key field
- taxType string - The tax type key field
- headers DeleteComponentsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Component deleted
updateComponents
function updateComponents(string dataAreaId, string taxComponent, string taxType, Component payload, UpdateComponentsHeaders headers) returns Component|errorUpdate Component
Parameters
- dataAreaId string - The company data area identifier
- taxComponent string - The tax component key field
- taxType string - The tax type key field
- payload Component - The request body
- headers UpdateComponentsHeaders (default {}) - Headers to be sent with the request
listDateIntervals
function listDateIntervals(map<string|string[]> headers, *ListDateIntervalsQueries queries) returns DateIntervalsCollection|errorList DateIntervals
Parameters
- queries *ListDateIntervalsQueries - Queries to be sent with the request
Return Type
- DateIntervalsCollection|error - Collection of DateInterval
createDateIntervals
function createDateIntervals(DateInterval payload, map<string|string[]> headers) returns DateInterval|errorCreate DateInterval
Parameters
- payload DateInterval - The request body
Return Type
- DateInterval|error - DateInterval created
getDateIntervals
function getDateIntervals(string dataAreaId, string dateIntervalCode, map<string|string[]> headers, *GetDateIntervalsQueries queries) returns DateInterval|errorGet DateInterval by key
Parameters
- dataAreaId string - The company data area identifier
- dateIntervalCode string - The date interval code key field
- queries *GetDateIntervalsQueries - Queries to be sent with the request
Return Type
- DateInterval|error - DateInterval
deleteDateIntervals
function deleteDateIntervals(string dataAreaId, string dateIntervalCode, DeleteDateIntervalsHeaders headers) returns error?Delete DateInterval
Parameters
- dataAreaId string - The company data area identifier
- dateIntervalCode string - The date interval code key field
- headers DeleteDateIntervalsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - DateInterval deleted
updateDateIntervals
function updateDateIntervals(string dataAreaId, string dateIntervalCode, DateInterval payload, UpdateDateIntervalsHeaders headers) returns DateInterval|errorUpdate DateInterval
Parameters
- dataAreaId string - The company data area identifier
- dateIntervalCode string - The date interval code key field
- payload DateInterval - The request body
- headers UpdateDateIntervalsHeaders (default {}) - Headers to be sent with the request
Return Type
- DateInterval|error - DateInterval updated
listEMItemTypes
function listEMItemTypes(map<string|string[]> headers, *ListEMItemTypesQueries queries) returns EMItemTypesCollection|errorList EMItemTypes
Parameters
- queries *ListEMItemTypesQueries - Queries to be sent with the request
Return Type
- EMItemTypesCollection|error - Collection of EMItemType
createEMItemTypes
function createEMItemTypes(EMItemType payload, map<string|string[]> headers) returns EMItemType|errorCreate EMItemType
Parameters
- payload EMItemType - The request body
Return Type
- EMItemType|error - EMItemType created
getEMItemTypes
function getEMItemTypes(string dataAreaId, string messageItemType, map<string|string[]> headers, *GetEMItemTypesQueries queries) returns EMItemType|errorGet EMItemType by key
Parameters
- dataAreaId string - The company data area identifier
- messageItemType string - The message item type key field
- queries *GetEMItemTypesQueries - Queries to be sent with the request
Return Type
- EMItemType|error - EMItemType
deleteEMItemTypes
function deleteEMItemTypes(string dataAreaId, string messageItemType, DeleteEMItemTypesHeaders headers) returns error?Delete EMItemType
Parameters
- dataAreaId string - The company data area identifier
- messageItemType string - The message item type key field
- headers DeleteEMItemTypesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - EMItemType deleted
updateEMItemTypes
function updateEMItemTypes(string dataAreaId, string messageItemType, EMItemType payload, UpdateEMItemTypesHeaders headers) returns EMItemType|errorUpdate EMItemType
Parameters
- dataAreaId string - The company data area identifier
- messageItemType string - The message item type key field
- payload EMItemType - The request body
- headers UpdateEMItemTypesHeaders (default {}) - Headers to be sent with the request
Return Type
- EMItemType|error - EMItemType updated
listEstateStatus
function listEstateStatus(map<string|string[]> headers, *ListEstateStatusQueries queries) returns EstateStatusCollection|errorList EstateStatus
Parameters
- queries *ListEstateStatusQueries - Queries to be sent with the request
Return Type
- EstateStatusCollection|error - Collection of EstateStatus
createEstateStatus
function createEstateStatus(EstateStatus payload, map<string|string[]> headers) returns EstateStatus|errorCreate EstateStatus
Parameters
- payload EstateStatus - The request body
Return Type
- EstateStatus|error - EstateStatus created
getEstateStatus
function getEstateStatus(string dataAreaId, string estStatId, map<string|string[]> headers, *GetEstateStatusQueries queries) returns EstateStatus|errorGet EstateStatus by key
Parameters
- dataAreaId string - The company data area identifier
- estStatId string - The est stat id key field
- queries *GetEstateStatusQueries - Queries to be sent with the request
Return Type
- EstateStatus|error - EstateStatus
deleteEstateStatus
function deleteEstateStatus(string dataAreaId, string estStatId, DeleteEstateStatusHeaders headers) returns error?Delete EstateStatus
Parameters
- dataAreaId string - The company data area identifier
- estStatId string - The est stat id key field
- headers DeleteEstateStatusHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - EstateStatus deleted
updateEstateStatus
function updateEstateStatus(string dataAreaId, string estStatId, EstateStatus payload, UpdateEstateStatusHeaders headers) returns EstateStatus|errorUpdate EstateStatus
Parameters
- dataAreaId string - The company data area identifier
- estStatId string - The est stat id key field
- payload EstateStatus - The request body
- headers UpdateEstateStatusHeaders (default {}) - Headers to be sent with the request
Return Type
- EstateStatus|error - EstateStatus updated
listExtCodeTables
function listExtCodeTables(map<string|string[]> headers, *ListExtCodeTablesQueries queries) returns ExtCodeTablesCollection|errorList ExtCodeTables
Parameters
- queries *ListExtCodeTablesQueries - Queries to be sent with the request
Return Type
- ExtCodeTablesCollection|error - Collection of ExtCodeTable
createExtCodeTables
function createExtCodeTables(ExtCodeTable payload, map<string|string[]> headers) returns ExtCodeTable|errorCreate ExtCodeTable
Parameters
- payload ExtCodeTable - The request body
Return Type
- ExtCodeTable|error - ExtCodeTable created
getExtCodeTables
function getExtCodeTables(string dataAreaId, string codeType, string version, string codeId, map<string|string[]> headers, *GetExtCodeTablesQueries queries) returns ExtCodeTable|errorGet ExtCodeTable by key
Parameters
- dataAreaId string - The company data area identifier
- codeType string - The code type key field
- version string - The version key field
- codeId string - The code id key field
- queries *GetExtCodeTablesQueries - Queries to be sent with the request
Return Type
- ExtCodeTable|error - ExtCodeTable
deleteExtCodeTables
function deleteExtCodeTables(string dataAreaId, string codeType, string version, string codeId, DeleteExtCodeTablesHeaders headers) returns error?Delete ExtCodeTable
Parameters
- dataAreaId string - The company data area identifier
- codeType string - The code type key field
- version string - The version key field
- codeId string - The code id key field
- headers DeleteExtCodeTablesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - ExtCodeTable deleted
updateExtCodeTables
function updateExtCodeTables(string dataAreaId, string codeType, string version, string codeId, ExtCodeTable payload, UpdateExtCodeTablesHeaders headers) returns ExtCodeTable|errorUpdate ExtCodeTable
Parameters
- dataAreaId string - The company data area identifier
- codeType string - The code type key field
- version string - The version key field
- codeId string - The code id key field
- payload ExtCodeTable - The request body
- headers UpdateExtCodeTablesHeaders (default {}) - Headers to be sent with the request
Return Type
- ExtCodeTable|error - ExtCodeTable updated
listFormatCodes
function listFormatCodes(map<string|string[]> headers, *ListFormatCodesQueries queries) returns FormatCodesCollection|errorList FormatCodes
Parameters
- queries *ListFormatCodesQueries - Queries to be sent with the request
Return Type
- FormatCodesCollection|error - Collection of FormatCode
createFormatCodes
function createFormatCodes(FormatCode payload, map<string|string[]> headers) returns FormatCode|errorCreate FormatCode
Parameters
- payload FormatCode - The request body
Return Type
- FormatCode|error - FormatCode created
getFormatCodes
function getFormatCodes(string dataAreaId, string code, string 'type, map<string|string[]> headers, *GetFormatCodesQueries queries) returns FormatCode|errorGet FormatCode by key
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- 'type string - The entity type identifier
- queries *GetFormatCodesQueries - Queries to be sent with the request
Return Type
- FormatCode|error - FormatCode
deleteFormatCodes
function deleteFormatCodes(string dataAreaId, string code, string 'type, DeleteFormatCodesHeaders headers) returns error?Delete FormatCode
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- 'type string - The entity type identifier
- headers DeleteFormatCodesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - FormatCode deleted
updateFormatCodes
function updateFormatCodes(string dataAreaId, string code, string 'type, FormatCode payload, UpdateFormatCodesHeaders headers) returns FormatCode|errorUpdate FormatCode
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- 'type string - The entity type identifier
- payload FormatCode - The request body
- headers UpdateFormatCodesHeaders (default {}) - Headers to be sent with the request
Return Type
- FormatCode|error - FormatCode updated
listHouses
function listHouses(map<string|string[]> headers, *ListHousesQueries queries) returns HousesCollection|errorList Houses
Parameters
- queries *ListHousesQueries - Queries to be sent with the request
Return Type
- HousesCollection|error - Collection of House
createHouses
Create House
Parameters
- payload House - The request body
getHouses
function getHouses(string dataAreaId, string houseId, map<string|string[]> headers, *GetHousesQueries queries) returns House|errorGet House by key
Parameters
- dataAreaId string - The company data area identifier
- houseId string - The house id key field
- queries *GetHousesQueries - Queries to be sent with the request
deleteHouses
function deleteHouses(string dataAreaId, string houseId, DeleteHousesHeaders headers) returns error?Delete House
Parameters
- dataAreaId string - The company data area identifier
- houseId string - The house id key field
- headers DeleteHousesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - House deleted
updateHouses
function updateHouses(string dataAreaId, string houseId, House payload, UpdateHousesHeaders headers) returns House|errorUpdate House
Parameters
- dataAreaId string - The company data area identifier
- houseId string - The house id key field
- payload House - The request body
- headers UpdateHousesHeaders (default {}) - Headers to be sent with the request
listImportModes
function listImportModes(map<string|string[]> headers, *ListImportModesQueries queries) returns ImportModesCollection|errorList ImportModes
Parameters
- queries *ListImportModesQueries - Queries to be sent with the request
Return Type
- ImportModesCollection|error - Collection of ImportMode
createImportModes
function createImportModes(ImportMode payload, map<string|string[]> headers) returns ImportMode|errorCreate ImportMode
Parameters
- payload ImportMode - The request body
Return Type
- ImportMode|error - ImportMode created
getImportModes
function getImportModes(string dataAreaId, string methodOfImport, map<string|string[]> headers, *GetImportModesQueries queries) returns ImportMode|errorGet ImportMode by key
Parameters
- dataAreaId string - The company data area identifier
- methodOfImport string - The method of import key field
- queries *GetImportModesQueries - Queries to be sent with the request
Return Type
- ImportMode|error - ImportMode
deleteImportModes
function deleteImportModes(string dataAreaId, string methodOfImport, DeleteImportModesHeaders headers) returns error?Delete ImportMode
Parameters
- dataAreaId string - The company data area identifier
- methodOfImport string - The method of import key field
- headers DeleteImportModesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - ImportMode deleted
updateImportModes
function updateImportModes(string dataAreaId, string methodOfImport, ImportMode payload, UpdateImportModesHeaders headers) returns ImportMode|errorUpdate ImportMode
Parameters
- dataAreaId string - The company data area identifier
- methodOfImport string - The method of import key field
- payload ImportMode - The request body
- headers UpdateImportModesHeaders (default {}) - Headers to be sent with the request
Return Type
- ImportMode|error - ImportMode updated
listItemGTDs
function listItemGTDs(map<string|string[]> headers, *ListItemGTDsQueries queries) returns ItemGTDsCollection|errorList ItemGTDs
Parameters
- queries *ListItemGTDsQueries - Queries to be sent with the request
Return Type
- ItemGTDsCollection|error - Collection of ItemGTD
createItemGTDs
Create ItemGTD
Parameters
- payload ItemGTD - The request body
getItemGTDs
function getItemGTDs(string dataAreaId, string itemNumber, string gTDNumber, map<string|string[]> headers, *GetItemGTDsQueries queries) returns ItemGTD|errorGet ItemGTD by key
Parameters
- dataAreaId string - The company data area identifier
- itemNumber string - The item number key field
- gTDNumber string - The g td number key field
- queries *GetItemGTDsQueries - Queries to be sent with the request
deleteItemGTDs
function deleteItemGTDs(string dataAreaId, string itemNumber, string gTDNumber, DeleteItemGTDsHeaders headers) returns error?Delete ItemGTD
Parameters
- dataAreaId string - The company data area identifier
- itemNumber string - The item number key field
- gTDNumber string - The g td number key field
- headers DeleteItemGTDsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - ItemGTD deleted
updateItemGTDs
function updateItemGTDs(string dataAreaId, string itemNumber, string gTDNumber, ItemGTD payload, UpdateItemGTDsHeaders headers) returns ItemGTD|errorUpdate ItemGTD
Parameters
- dataAreaId string - The company data area identifier
- itemNumber string - The item number key field
- gTDNumber string - The g td number key field
- payload ItemGTD - The request body
- headers UpdateItemGTDsHeaders (default {}) - Headers to be sent with the request
listLoadTemplates
function listLoadTemplates(map<string|string[]> headers, *ListLoadTemplatesQueries queries) returns LoadTemplatesCollection|errorList LoadTemplates
Parameters
- queries *ListLoadTemplatesQueries - Queries to be sent with the request
Return Type
- LoadTemplatesCollection|error - Collection of LoadTemplate
createLoadTemplates
function createLoadTemplates(LoadTemplate payload, map<string|string[]> headers) returns LoadTemplate|errorCreate LoadTemplate
Parameters
- payload LoadTemplate - The request body
Return Type
- LoadTemplate|error - LoadTemplate created
getLoadTemplates
function getLoadTemplates(string dataAreaId, string templateId, map<string|string[]> headers, *GetLoadTemplatesQueries queries) returns LoadTemplate|errorGet LoadTemplate by key
Parameters
- dataAreaId string - The company data area identifier
- templateId string - The template id key field
- queries *GetLoadTemplatesQueries - Queries to be sent with the request
Return Type
- LoadTemplate|error - LoadTemplate
deleteLoadTemplates
function deleteLoadTemplates(string dataAreaId, string templateId, DeleteLoadTemplatesHeaders headers) returns error?Delete LoadTemplate
Parameters
- dataAreaId string - The company data area identifier
- templateId string - The template id key field
- headers DeleteLoadTemplatesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - LoadTemplate deleted
updateLoadTemplates
function updateLoadTemplates(string dataAreaId, string templateId, LoadTemplate payload, UpdateLoadTemplatesHeaders headers) returns LoadTemplate|errorUpdate LoadTemplate
Parameters
- dataAreaId string - The company data area identifier
- templateId string - The template id key field
- payload LoadTemplate - The request body
- headers UpdateLoadTemplatesHeaders (default {}) - Headers to be sent with the request
Return Type
- LoadTemplate|error - LoadTemplate updated
listLoyaltyLevels
function listLoyaltyLevels(map<string|string[]> headers, *ListLoyaltyLevelsQueries queries) returns LoyaltyLevelsCollection|errorList LoyaltyLevels
Parameters
- queries *ListLoyaltyLevelsQueries - Queries to be sent with the request
Return Type
- LoyaltyLevelsCollection|error - Collection of LoyaltyLevel
createLoyaltyLevels
function createLoyaltyLevels(LoyaltyLevel payload, map<string|string[]> headers) returns LoyaltyLevel|errorCreate LoyaltyLevel
Parameters
- payload LoyaltyLevel - The request body
Return Type
- LoyaltyLevel|error - LoyaltyLevel created
getLoyaltyLevels
function getLoyaltyLevels(string dataAreaId, string levelPhrase, map<string|string[]> headers, *GetLoyaltyLevelsQueries queries) returns LoyaltyLevel|errorGet LoyaltyLevel by key
Parameters
- dataAreaId string - The company data area identifier
- levelPhrase string - The level phrase key field
- queries *GetLoyaltyLevelsQueries - Queries to be sent with the request
Return Type
- LoyaltyLevel|error - LoyaltyLevel
deleteLoyaltyLevels
function deleteLoyaltyLevels(string dataAreaId, string levelPhrase, DeleteLoyaltyLevelsHeaders headers) returns error?Delete LoyaltyLevel
Parameters
- dataAreaId string - The company data area identifier
- levelPhrase string - The level phrase key field
- headers DeleteLoyaltyLevelsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - LoyaltyLevel deleted
updateLoyaltyLevels
function updateLoyaltyLevels(string dataAreaId, string levelPhrase, LoyaltyLevel payload, UpdateLoyaltyLevelsHeaders headers) returns LoyaltyLevel|errorUpdate LoyaltyLevel
Parameters
- dataAreaId string - The company data area identifier
- levelPhrase string - The level phrase key field
- payload LoyaltyLevel - The request body
- headers UpdateLoyaltyLevelsHeaders (default {}) - Headers to be sent with the request
Return Type
- LoyaltyLevel|error - LoyaltyLevel updated
listModelTables
function listModelTables(map<string|string[]> headers, *ListModelTablesQueries queries) returns ModelTablesCollection|errorList ModelTables
Parameters
- queries *ListModelTablesQueries - Queries to be sent with the request
Return Type
- ModelTablesCollection|error - Collection of ModelTable
createModelTables
function createModelTables(ModelTable payload, map<string|string[]> headers) returns ModelTable|errorCreate ModelTable
Parameters
- payload ModelTable - The request body
Return Type
- ModelTable|error - ModelTable created
getModelTables
function getModelTables(string dataAreaId, string model, map<string|string[]> headers, *GetModelTablesQueries queries) returns ModelTable|errorGet ModelTable by key
Parameters
- dataAreaId string - The company data area identifier
- model string - The model key field
- queries *GetModelTablesQueries - Queries to be sent with the request
Return Type
- ModelTable|error - ModelTable
deleteModelTables
function deleteModelTables(string dataAreaId, string model, DeleteModelTablesHeaders headers) returns error?Delete ModelTable
Parameters
- dataAreaId string - The company data area identifier
- model string - The model key field
- headers DeleteModelTablesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - ModelTable deleted
updateModelTables
function updateModelTables(string dataAreaId, string model, ModelTable payload, UpdateModelTablesHeaders headers) returns ModelTable|errorUpdate ModelTable
Parameters
- dataAreaId string - The company data area identifier
- model string - The model key field
- payload ModelTable - The request body
- headers UpdateModelTablesHeaders (default {}) - Headers to be sent with the request
Return Type
- ModelTable|error - ModelTable updated
listOfBusinesses
function listOfBusinesses(map<string|string[]> headers, *ListOfBusinessesQueries queries) returns OfBusinessesCollection|errorList OfBusinesses
Parameters
- queries *ListOfBusinessesQueries - Queries to be sent with the request
Return Type
- OfBusinessesCollection|error - Collection of OfBusiness
createOfBusinesses
function createOfBusinesses(OfBusiness payload, map<string|string[]> headers) returns OfBusiness|errorCreate OfBusiness
Parameters
- payload OfBusiness - The request body
Return Type
- OfBusiness|error - OfBusiness created
getOfBusinesses
function getOfBusinesses(string dataAreaId, string lineOfBusiness, map<string|string[]> headers, *GetOfBusinessesQueries queries) returns OfBusiness|errorGet OfBusiness by key
Parameters
- dataAreaId string - The company data area identifier
- lineOfBusiness string - The line of business key field
- queries *GetOfBusinessesQueries - Queries to be sent with the request
Return Type
- OfBusiness|error - OfBusiness
deleteOfBusinesses
function deleteOfBusinesses(string dataAreaId, string lineOfBusiness, DeleteOfBusinessesHeaders headers) returns error?Delete OfBusiness
Parameters
- dataAreaId string - The company data area identifier
- lineOfBusiness string - The line of business key field
- headers DeleteOfBusinessesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - OfBusiness deleted
updateOfBusinesses
function updateOfBusinesses(string dataAreaId, string lineOfBusiness, OfBusiness payload, UpdateOfBusinessesHeaders headers) returns OfBusiness|errorUpdate OfBusiness
Parameters
- dataAreaId string - The company data area identifier
- lineOfBusiness string - The line of business key field
- payload OfBusiness - The request body
- headers UpdateOfBusinessesHeaders (default {}) - Headers to be sent with the request
Return Type
- OfBusiness|error - OfBusiness updated
listOtherClients
function listOtherClients(map<string|string[]> headers, *ListOtherClientsQueries queries) returns OtherClientsCollection|errorList OtherClients
Parameters
- queries *ListOtherClientsQueries - Queries to be sent with the request
Return Type
- OtherClientsCollection|error - Collection of OtherClients
createOtherClients
function createOtherClients(OtherClients payload, map<string|string[]> headers) returns OtherClients|errorCreate OtherClients
Parameters
- payload OtherClients - The request body
Return Type
- OtherClients|error - OtherClients created
getOtherClients
function getOtherClients(string dataAreaId, string code, map<string|string[]> headers, *GetOtherClientsQueries queries) returns OtherClients|errorGet OtherClients by key
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- queries *GetOtherClientsQueries - Queries to be sent with the request
Return Type
- OtherClients|error - OtherClients
deleteOtherClients
function deleteOtherClients(string dataAreaId, string code, DeleteOtherClientsHeaders headers) returns error?Delete OtherClients
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- headers DeleteOtherClientsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - OtherClients deleted
updateOtherClients
function updateOtherClients(string dataAreaId, string code, OtherClients payload, UpdateOtherClientsHeaders headers) returns OtherClients|errorUpdate OtherClients
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- payload OtherClients - The request body
- headers UpdateOtherClientsHeaders (default {}) - Headers to be sent with the request
Return Type
- OtherClients|error - OtherClients updated
listParameters
function listParameters(map<string|string[]> headers, *ListParametersQueries queries) returns ParametersCollection|errorList Parameters
Parameters
- queries *ListParametersQueries - Queries to be sent with the request
Return Type
- ParametersCollection|error - Collection of Parameters
createParameters
function createParameters(Parameters payload, map<string|string[]> headers) returns Parameters|errorCreate Parameters
Parameters
- payload Parameters - The request body
Return Type
- Parameters|error - Parameters created
getParameters
function getParameters(string dataAreaId, int 'key, map<string|string[]> headers, *GetParametersQueries queries) returns Parameters|errorGet Parameters by key
Parameters
- dataAreaId string - The company data area identifier
- 'key int - The entity key value
- queries *GetParametersQueries - Queries to be sent with the request
Return Type
- Parameters|error - Parameters
deleteParameters
function deleteParameters(string dataAreaId, int 'key, DeleteParametersHeaders headers) returns error?Delete Parameters
Parameters
- dataAreaId string - The company data area identifier
- 'key int - The entity key value
- headers DeleteParametersHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Parameters deleted
updateParameters
function updateParameters(string dataAreaId, int 'key, Parameters payload, UpdateParametersHeaders headers) returns Parameters|errorUpdate Parameters
Parameters
- dataAreaId string - The company data area identifier
- 'key int - The entity key value
- payload Parameters - The request body
- headers UpdateParametersHeaders (default {}) - Headers to be sent with the request
Return Type
- Parameters|error - Parameters updated
listServiceCodes
function listServiceCodes(map<string|string[]> headers, *ListServiceCodesQueries queries) returns ServiceCodesCollection|errorList ServiceCodes
Parameters
- queries *ListServiceCodesQueries - Queries to be sent with the request
Return Type
- ServiceCodesCollection|error - Collection of ServiceCodes
createServiceCodes
function createServiceCodes(ServiceCodes payload, map<string|string[]> headers) returns ServiceCodes|errorCreate ServiceCodes
Parameters
- payload ServiceCodes - The request body
Return Type
- ServiceCodes|error - ServiceCodes created
getServiceCodes
function getServiceCodes(string dataAreaId, string serviceCode, map<string|string[]> headers, *GetServiceCodesQueries queries) returns ServiceCodes|errorGet ServiceCodes by key
Parameters
- dataAreaId string - The company data area identifier
- serviceCode string - The service code key field
- queries *GetServiceCodesQueries - Queries to be sent with the request
Return Type
- ServiceCodes|error - ServiceCodes
deleteServiceCodes
function deleteServiceCodes(string dataAreaId, string serviceCode, DeleteServiceCodesHeaders headers) returns error?Delete ServiceCodes
Parameters
- dataAreaId string - The company data area identifier
- serviceCode string - The service code key field
- headers DeleteServiceCodesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - ServiceCodes deleted
updateServiceCodes
function updateServiceCodes(string dataAreaId, string serviceCode, ServiceCodes payload, UpdateServiceCodesHeaders headers) returns ServiceCodes|errorUpdate ServiceCodes
Parameters
- dataAreaId string - The company data area identifier
- serviceCode string - The service code key field
- payload ServiceCodes - The request body
- headers UpdateServiceCodesHeaders (default {}) - Headers to be sent with the request
Return Type
- ServiceCodes|error - ServiceCodes updated
listSiteGate
function listSiteGate(map<string|string[]> headers, *ListSiteGateQueries queries) returns SiteGateCollection|errorList SiteGate
Parameters
- queries *ListSiteGateQueries - Queries to be sent with the request
Return Type
- SiteGateCollection|error - Collection of SiteGate
createSiteGate
Create SiteGate
Parameters
- payload SiteGate - The request body
getSiteGate
function getSiteGate(string dataAreaId, string 'type, string gateId, string siteId, map<string|string[]> headers, *GetSiteGateQueries queries) returns SiteGate|errorGet SiteGate by key
Parameters
- dataAreaId string - The company data area identifier
- 'type string - The entity type identifier
- gateId string - The gate id key field
- siteId string - The site id key field
- queries *GetSiteGateQueries - Queries to be sent with the request
deleteSiteGate
function deleteSiteGate(string dataAreaId, string 'type, string gateId, string siteId, DeleteSiteGateHeaders headers) returns error?Delete SiteGate
Parameters
- dataAreaId string - The company data area identifier
- 'type string - The entity type identifier
- gateId string - The gate id key field
- siteId string - The site id key field
- headers DeleteSiteGateHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - SiteGate deleted
updateSiteGate
function updateSiteGate(string dataAreaId, string 'type, string gateId, string siteId, SiteGate payload, UpdateSiteGateHeaders headers) returns SiteGate|errorUpdate SiteGate
Records
microsoft.dynamics365.finance.system: Abbreviations
Fields
- addrTypeLevel? Signed32 -
- addrTypeName? string -
- addrTypeCode? string -
- addrTypeFullName? string -
microsoft.dynamics365.finance.system: AbbreviationsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AbbreviationsCollectionAllOf2
- value Abbreviations[]
- anydata...
microsoft.dynamics365.finance.system: AbbreviationsCollectionAllOf2
Fields
- value? Abbreviations[] -
microsoft.dynamics365.finance.system: AllProductsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AllProductsCollectionAllOf2
- value EveryProduct[]
- anydata...
microsoft.dynamics365.finance.system: AllProductsCollectionAllOf2
Fields
- value? EveryProduct[] -
microsoft.dynamics365.finance.system: CFPSTable
Fields
- dataAreaId? string -
- transactionType? SalesPurchBothBR -
- searchName? string -
- cFPSCode? string -
- name? string -
microsoft.dynamics365.finance.system: CFPSTableCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *CFPSTableCollectionAllOf2
- value CFPSTable[]
- anydata...
microsoft.dynamics365.finance.system: CFPSTableCollectionAllOf2
Fields
- value? CFPSTable[] -
microsoft.dynamics365.finance.system: Component
Fields
- dataAreaId? string -
- taxType? TaxTypeIN -
- taxComponent? string -
- description? string -
microsoft.dynamics365.finance.system: ComponentsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ComponentsCollectionAllOf2
- value Component[]
- anydata...
microsoft.dynamics365.finance.system: ComponentsCollectionAllOf2
Fields
- value? Component[] -
microsoft.dynamics365.finance.system: ConnectionConfig
Fields
- auth? OAuth2ClientCredentialsGrantConfig - Configurations related to client authentication
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings(default {}) - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings(default {}) - Configurations related to HTTP/2 protocol
- timeout decimal(default 30) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- followRedirects? FollowRedirects - Configurations associated with Redirection
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache CacheConfig(default {}) - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- cookieConfig? CookieConfig - Configurations associated with cookies
- responseLimits ResponseLimitConfigs(default {}) - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- socketConfig ClientSocketConfig(default {}) - Provides settings related to client socket configuration
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
- laxDataBinding boolean(default true) - Enables relaxed data binding on the client side. When enabled,
nilvalues are treated as optional, and absent fields are handled asnilabletypes. Enabled by default.
microsoft.dynamics365.finance.system: DateInterval
Fields
- endPeriodType? LedgerPeriodType -
- lockedStartDate? string -
- startChange? Signed32 -
- startPeriodType? LedgerPeriodType -
- description? string -
- dateIntervalCode? string -
- endFunction? StartEnd -
- endPeriodTypeAdjustment? LedgerPeriodType -
- startAdjustmentUnit? PeriodUnitCalc -
- startFunctionAdjustment? StartEnd -
- dataAreaId? string -
- endFunctionAdjustment? StartEnd -
- startPeriodTypeAdjustment? LedgerPeriodType -
- endChange? Signed32 -
- lockedEndDate? string -
- startFunction? StartEnd -
- endAdjustmentUnit? PeriodUnitCalc -
microsoft.dynamics365.finance.system: DateIntervalsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *DateIntervalsCollectionAllOf2
- value DateInterval[]
- anydata...
microsoft.dynamics365.finance.system: DateIntervalsCollectionAllOf2
Fields
- value? DateInterval[] -
microsoft.dynamics365.finance.system: DeleteAbbreviationsHeaders
Represents the Headers record for the operation: deleteAbbreviations
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteAllProductsHeaders
Represents the Headers record for the operation: deleteAllProducts
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteCFPSTableHeaders
Represents the Headers record for the operation: deleteCFPSTable
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteComponentsHeaders
Represents the Headers record for the operation: deleteComponents
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteDateIntervalsHeaders
Represents the Headers record for the operation: deleteDateIntervals
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteEMItemTypesHeaders
Represents the Headers record for the operation: deleteEMItemTypes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteEstateStatusHeaders
Represents the Headers record for the operation: deleteEstateStatus
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteExtCodeTablesHeaders
Represents the Headers record for the operation: deleteExtCodeTables
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteFormatCodesHeaders
Represents the Headers record for the operation: deleteFormatCodes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteHousesHeaders
Represents the Headers record for the operation: deleteHouses
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteImportModesHeaders
Represents the Headers record for the operation: deleteImportModes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteItemGTDsHeaders
Represents the Headers record for the operation: deleteItemGTDs
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteLoadTemplatesHeaders
Represents the Headers record for the operation: deleteLoadTemplates
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteLoyaltyLevelsHeaders
Represents the Headers record for the operation: deleteLoyaltyLevels
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteModelTablesHeaders
Represents the Headers record for the operation: deleteModelTables
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteOfBusinessesHeaders
Represents the Headers record for the operation: deleteOfBusinesses
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteOtherClientsHeaders
Represents the Headers record for the operation: deleteOtherClients
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteParametersHeaders
Represents the Headers record for the operation: deleteParameters
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteServiceCodesHeaders
Represents the Headers record for the operation: deleteServiceCodes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: DeleteSiteGateHeaders
Represents the Headers record for the operation: deleteSiteGate
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: Document
Fields
- unloadingState? string -
- economicActivity? EconomicActivityType -
- loadingDunsNumber? string -
- loadingAddress? string -
- unloadingStreetNumber? string -
- loadingLongitude? decimal -
- loadingDescription? string -
- unloadingZipCode? string -
- dataAreaId? string -
- loadingTimeZone? Timezone -
- unloadingCity? string -
- loadingDateAndTime? string -
- unloadingBuildingCompliment? string -
- carrierType? CarrierTypeW -
- riskLevelOfTheLoad? string -
- loadingPostBox? string -
- carrier? string -
- loadingValidFrom? string -
- loadingState? string -
- trailerRegistrationNumber? string -
- unloadingCountryRegionId? string -
- loadingZipCode? string -
- loadingCity? string -
- unloadingLatitude? decimal -
- loadingDistrictName? string -
- unloadingLongitude? decimal -
- loadingLocationId? string -
- loadingCountryRegionISOCode? string -
- vehicleModel? string -
- loadingCountryRegionId? string -
- loadingValidTo? string -
- package? string -
- loadingBuildingCompliment? string -
- unloadingAddress? string -
- unloadingStreet? string -
- issuedByPersonnelNumber? string -
- printTransportationDetails? NoYes -
- unloadingDistrictName? string -
- loadingIsPrivate? NoYes -
- driverName? string -
- loadingStreet? string -
- unloadingLocationId? string -
- unloadingDateAndTime? string -
- unloadingTimeZone? Timezone -
- registrationNumber? string -
- documentDateTime? string -
- unloadingValidFrom? string -
- lineId? string -
- unloadingCounty? string -
- unloadingDescription? string -
- loadingCounty? string -
- unloadingValidTo? string -
- loadingLatitude? decimal -
- unloadingPostBox? string -
- loadingStreetNumber? string -
- unloadingIsPrivate? NoYes -
- driverPersonnelNumber? string -
- unloadingDunsNumber? string -
- unloadingCountryRegionISOCode? string -
microsoft.dynamics365.finance.system: DocumentType
Fields
- site? string -
- parameters? record { fileContent byte[], fileName string } -
- actionClassName? string -
- folderPath? string -
- host? string -
- filePlace? DocuFilePlace -
- name? string -
- dataAreaId? string -
- typeGroup? DocuTypeGroup -
- iD? string -
- removeOption? DocuRemoveOption -
- fileRemovalConfirmation? NoYes -
- docuStructureType? DocuStructureType -
microsoft.dynamics365.finance.system: EMItemType
Fields
- dataAreaId? string -
- messageItemType? string -
- description? string -
microsoft.dynamics365.finance.system: EMItemTypesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *EMItemTypesCollectionAllOf2
- value EMItemType[]
- anydata...
microsoft.dynamics365.finance.system: EMItemTypesCollectionAllOf2
Fields
- value? EMItemType[] -
microsoft.dynamics365.finance.system: EstateStatus
Fields
- dataAreaId? string -
- estStatId? string -
- name? string -
microsoft.dynamics365.finance.system: EstateStatusCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *EstateStatusCollectionAllOf2
- value EstateStatus[]
- anydata...
microsoft.dynamics365.finance.system: EstateStatusCollectionAllOf2
Fields
- value? EstateStatus[] -
microsoft.dynamics365.finance.system: EveryProduct
Fields
- productName? string -
- productNumber? string -
- productDescription? string -
- productSearchName? string -
microsoft.dynamics365.finance.system: ExtCodeTable
Fields
- dataAreaId? string -
- description? string -
- version? string -
- codeId? string -
- codeType? EInvoiceExtCodeTypeMX -
- validFrom? string -
microsoft.dynamics365.finance.system: ExtCodeTablesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ExtCodeTablesCollectionAllOf2
- value ExtCodeTable[]
- anydata...
microsoft.dynamics365.finance.system: ExtCodeTablesCollectionAllOf2
Fields
- value? ExtCodeTable[] -
microsoft.dynamics365.finance.system: FormatCode
Fields
- dataAreaId? string -
- 'type? PaymentFormatCodeTypeW -
- description? string -
- code? string -
microsoft.dynamics365.finance.system: FormatCodesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *FormatCodesCollectionAllOf2
- value FormatCode[]
- anydata...
microsoft.dynamics365.finance.system: FormatCodesCollectionAllOf2
Fields
- value? FormatCode[] -
microsoft.dynamics365.finance.system: GetAbbreviationsQueries
Represents the Queries record for the operation: getAbbreviations
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetAllProductsQueries
Represents the Queries record for the operation: getAllProducts
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetCFPSTableQueries
Represents the Queries record for the operation: getCFPSTable
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetComponentsQueries
Represents the Queries record for the operation: getComponents
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetDateIntervalsQueries
Represents the Queries record for the operation: getDateIntervals
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetEMItemTypesQueries
Represents the Queries record for the operation: getEMItemTypes
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetEstateStatusQueries
Represents the Queries record for the operation: getEstateStatus
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetExtCodeTablesQueries
Represents the Queries record for the operation: getExtCodeTables
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetFormatCodesQueries
Represents the Queries record for the operation: getFormatCodes
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetHousesQueries
Represents the Queries record for the operation: getHouses
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetImportModesQueries
Represents the Queries record for the operation: getImportModes
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetItemGTDsQueries
Represents the Queries record for the operation: getItemGTDs
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetLoadTemplatesQueries
Represents the Queries record for the operation: getLoadTemplates
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetLoyaltyLevelsQueries
Represents the Queries record for the operation: getLoyaltyLevels
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetModelTablesQueries
Represents the Queries record for the operation: getModelTables
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetOfBusinessesQueries
Represents the Queries record for the operation: getOfBusinesses
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetOtherClientsQueries
Represents the Queries record for the operation: getOtherClients
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetParametersQueries
Represents the Queries record for the operation: getParameters
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetServiceCodesQueries
Represents the Queries record for the operation: getServiceCodes
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: GetSiteGateQueries
Represents the Queries record for the operation: getSiteGate
Fields
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: House
Fields
- houseGuid? string -
- estStatus? string -
- postalCode? string -
- houseId? string -
- buildNum? string -
- endDate? string -
- terrIFNSFL? string -
- divType? string -
- startDate? string -
- dataAreaId? string -
- aOGuid? string -
- strStatus? string -
- houseNum? string -
- iFNSFL? string -
- oKATO? string -
- strucNum? string -
microsoft.dynamics365.finance.system: HousesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *HousesCollectionAllOf2
- value House[]
- anydata...
microsoft.dynamics365.finance.system: HousesCollectionAllOf2
Fields
- value? House[] -
microsoft.dynamics365.finance.system: ImportMode
Fields
- dataAreaId? string -
- description? string -
- className? string -
- classID? Signed32 -
- bankAccount? string -
- methodOfImport? string -
- bridgingAccountDisplayValue? string -
microsoft.dynamics365.finance.system: ImportModesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ImportModesCollectionAllOf2
- value ImportMode[]
- anydata...
microsoft.dynamics365.finance.system: ImportModesCollectionAllOf2
Fields
- value? ImportMode[] -
microsoft.dynamics365.finance.system: ItemGTD
Fields
- dataAreaId? string -
- itemNumber? string -
- gTDNumber? string -
- itemOriginCountryRegionId? string -
microsoft.dynamics365.finance.system: ItemGTDsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ItemGTDsCollectionAllOf2
- value ItemGTD[]
- anydata...
microsoft.dynamics365.finance.system: ItemGTDsCollectionAllOf2
Fields
- value? ItemGTD[] -
microsoft.dynamics365.finance.system: ListAbbreviationsQueries
Represents the Queries record for the operation: listAbbreviations
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListAllProductsQueries
Represents the Queries record for the operation: listAllProducts
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListCFPSTableQueries
Represents the Queries record for the operation: listCFPSTable
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListComponentsQueries
Represents the Queries record for the operation: listComponents
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListDateIntervalsQueries
Represents the Queries record for the operation: listDateIntervals
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListEMItemTypesQueries
Represents the Queries record for the operation: listEMItemTypes
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListEstateStatusQueries
Represents the Queries record for the operation: listEstateStatus
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListExtCodeTablesQueries
Represents the Queries record for the operation: listExtCodeTables
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListFormatCodesQueries
Represents the Queries record for the operation: listFormatCodes
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListHousesQueries
Represents the Queries record for the operation: listHouses
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListImportModesQueries
Represents the Queries record for the operation: listImportModes
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListItemGTDsQueries
Represents the Queries record for the operation: listItemGTDs
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListLoadTemplatesQueries
Represents the Queries record for the operation: listLoadTemplates
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListLoyaltyLevelsQueries
Represents the Queries record for the operation: listLoyaltyLevels
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListModelTablesQueries
Represents the Queries record for the operation: listModelTables
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListOfBusinessesQueries
Represents the Queries record for the operation: listOfBusinesses
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListOtherClientsQueries
Represents the Queries record for the operation: listOtherClients
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListParametersQueries
Represents the Queries record for the operation: listParameters
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListServiceCodesQueries
Represents the Queries record for the operation: listServiceCodes
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: ListSiteGateQueries
Represents the Queries record for the operation: listSiteGate
Fields
- skip? int - OData $skip query parameter - number of records to skip
- top? int - OData $top query parameter - maximum number of records to return
- filter? string - OData $filter query parameter - filter expression
- orderby? string - OData $orderby query parameter - sort order expression
- expand? string - OData $expand query parameter - comma-separated list of related entities to include
- crossCompany? boolean - When true, query results include records from all companies
- count? boolean - When true, the response includes the total count of matching records
- 'select? string - OData $select query parameter - comma-separated list of fields to return
microsoft.dynamics365.finance.system: LoadTemplate
Fields
- maximumLoadWeight? decimal -
- isLoadSplitShipConfirmAllowed? NoYes -
- loadSplitShipmentConfirmationPolicy? WHSLoadSplitShipConfirmPolicy -
- maximumQuantity? decimal -
- isLoadFloorStacked? NoYes -
- warehouseEquipmentCode? string -
- loadWidth? decimal -
- dataAreaId? string -
- maximumLoadVolume? decimal -
- maximumGrossWeight? decimal -
- loadHeight? decimal -
- maximumQuantityUnitSymbol? string -
- templateId? string -
- maximumFreightPieces? Signed32 -
- loadDepth? decimal -
microsoft.dynamics365.finance.system: LoadTemplatesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *LoadTemplatesCollectionAllOf2
- value LoadTemplate[]
- anydata...
microsoft.dynamics365.finance.system: LoadTemplatesCollectionAllOf2
Fields
- value? LoadTemplate[] -
microsoft.dynamics365.finance.system: LoyaltyLevel
Fields
- dataAreaId? string -
- levelDescription? string -
- levelPhrase? string -
microsoft.dynamics365.finance.system: LoyaltyLevelsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *LoyaltyLevelsCollectionAllOf2
- value LoyaltyLevel[]
- anydata...
microsoft.dynamics365.finance.system: LoyaltyLevelsCollectionAllOf2
Fields
- value? LoyaltyLevel[] -
microsoft.dynamics365.finance.system: ModelTable
Fields
- dataAreaId? string -
- description? string -
- model? string -
microsoft.dynamics365.finance.system: ModelTablesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ModelTablesCollectionAllOf2
- value ModelTable[]
- anydata...
microsoft.dynamics365.finance.system: ModelTablesCollectionAllOf2
Fields
- value? ModelTable[] -
microsoft.dynamics365.finance.system: OAuth2ClientCredentialsGrantConfig
OAuth2 Client Credentials Grant Configs
Fields
- Fields Included from *OAuth2ClientCredentialsGrantConfig
- tokenUrl string(default "https://login.microsoftonline.com/{tenant}/oauth2/v2.0/token") - Token URL
microsoft.dynamics365.finance.system: ODataCollection
Fields
- odataNextLink? string -
- odataCount? int -
- odataContext? string -
microsoft.dynamics365.finance.system: OfBusiness
Fields
- dataAreaId? string -
- description? string -
- lineOfBusiness? string -
microsoft.dynamics365.finance.system: OfBusinessesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *OfBusinessesCollectionAllOf2
- value OfBusiness[]
- anydata...
microsoft.dynamics365.finance.system: OfBusinessesCollectionAllOf2
Fields
- value? OfBusiness[] -
microsoft.dynamics365.finance.system: OtherClients
Fields
- addressLocationRoles? string -
- bank? string -
- organization? int -
- address? string -
- taxExemptNumber? string -
- name? string -
- sWIFTCode? string -
- addressCounty? string -
- dataAreaId? string -
- addressCity? string -
- addressDescription? string -
- addressLongitude? decimal -
- addressValidFrom? string -
- resident? NoYes -
- registrationNumber? string -
- partyType? string -
- paymentTransactionCode? int -
- bankAddress? string -
- locationId? string -
- addressTimeZone? Timezone -
- code? string -
- addressCountryRegionId? string -
- addressCountryRegionISOCode? string -
- districtName? string -
- routingNumber? string -
- partyNumber? string -
- addressStreet? string -
- subAccount? string -
- addressValidTo? string -
- addressZipCode? string -
- lvPaymTransCodes? int -
- bankAccountNumber? string -
- addressLatitude? decimal -
- addressState? string -
microsoft.dynamics365.finance.system: OtherClientsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *OtherClientsCollectionAllOf2
- value OtherClients[]
- anydata...
microsoft.dynamics365.finance.system: OtherClientsCollectionAllOf2
Fields
- value? OtherClients[] -
microsoft.dynamics365.finance.system: Parameters
Fields
- cashFlowDimension? string -
- cashflowCodeFormat? string -
- fixedAssetGroupCodeFormat? string -
- eRModelName? string -
- balanceSheet? string -
- cashflowAdditional? string -
- orgNumber? string -
- changesOfOwnersEquity? string -
- industry? string -
- dataAreaId? string -
- depreciationLedgerDimensionDisplayValue? string -
- incomeSheet? string -
- orgType? GBTOrgTypeCN -
- cashflowMajorSheet? string -
- disposalLedgerDimensionDisplayValue? string -
- acquisitionLedgerDimensionDisplayValue? string -
- 'key Signed32 -
microsoft.dynamics365.finance.system: ParametersCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ParametersCollectionAllOf2
- value Parameters[]
- anydata...
microsoft.dynamics365.finance.system: ParametersCollectionAllOf2
Fields
- value? Parameters[] -
microsoft.dynamics365.finance.system: ServiceCodes
Fields
- dataAreaId? string -
- serviceCode? string -
- minorHead? string -
- serviceAccountingCode? string -
- name? string -
microsoft.dynamics365.finance.system: ServiceCodesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ServiceCodesCollectionAllOf2
- value ServiceCodes[]
- anydata...
microsoft.dynamics365.finance.system: ServiceCodesCollectionAllOf2
Fields
- value? ServiceCodes[] -
microsoft.dynamics365.finance.system: SiteGate
Fields
- dataAreaId? string -
- 'type? InventSiteGateTypeIN -
- siteId? string -
- gateId? string -
- description? string -
microsoft.dynamics365.finance.system: SiteGateCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *SiteGateCollectionAllOf2
- value SiteGate[]
- anydata...
microsoft.dynamics365.finance.system: SiteGateCollectionAllOf2
Fields
- value? SiteGate[] -
microsoft.dynamics365.finance.system: Type
Fields
- dataAreaId? string -
- shortName? string -
- flTypeId? string -
- name? string -
microsoft.dynamics365.finance.system: UpdateAbbreviationsHeaders
Represents the Headers record for the operation: updateAbbreviations
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateAllProductsHeaders
Represents the Headers record for the operation: updateAllProducts
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateCFPSTableHeaders
Represents the Headers record for the operation: updateCFPSTable
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateComponentsHeaders
Represents the Headers record for the operation: updateComponents
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateDateIntervalsHeaders
Represents the Headers record for the operation: updateDateIntervals
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateEMItemTypesHeaders
Represents the Headers record for the operation: updateEMItemTypes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateEstateStatusHeaders
Represents the Headers record for the operation: updateEstateStatus
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateExtCodeTablesHeaders
Represents the Headers record for the operation: updateExtCodeTables
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateFormatCodesHeaders
Represents the Headers record for the operation: updateFormatCodes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateHousesHeaders
Represents the Headers record for the operation: updateHouses
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateImportModesHeaders
Represents the Headers record for the operation: updateImportModes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateItemGTDsHeaders
Represents the Headers record for the operation: updateItemGTDs
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateLoadTemplatesHeaders
Represents the Headers record for the operation: updateLoadTemplates
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateLoyaltyLevelsHeaders
Represents the Headers record for the operation: updateLoyaltyLevels
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateModelTablesHeaders
Represents the Headers record for the operation: updateModelTables
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateOfBusinessesHeaders
Represents the Headers record for the operation: updateOfBusinesses
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateOtherClientsHeaders
Represents the Headers record for the operation: updateOtherClients
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateParametersHeaders
Represents the Headers record for the operation: updateParameters
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateServiceCodesHeaders
Represents the Headers record for the operation: updateServiceCodes
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.system: UpdateSiteGateHeaders
Represents the Headers record for the operation: updateSiteGate
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
Union types
microsoft.dynamics365.finance.system: CarrierTypeW
CarrierTypeW
microsoft.dynamics365.finance.system: InventSiteGateTypeIN
InventSiteGateTypeIN
microsoft.dynamics365.finance.system: WHSLoadSplitShipConfirmPolicy
WHSLoadSplitShipConfirmPolicy
microsoft.dynamics365.finance.system: PaymentFormatCodeTypeW
PaymentFormatCodeTypeW
microsoft.dynamics365.finance.system: EInvoiceExtCodeTypeMX
EInvoiceExtCodeTypeMX
microsoft.dynamics365.finance.system: DocuTypeGroup
DocuTypeGroup
microsoft.dynamics365.finance.system: GBTOrgTypeCN
GBTOrgTypeCN
microsoft.dynamics365.finance.system: DocuStructureType
DocuStructureType
microsoft.dynamics365.finance.system: SalesPurchBothBR
SalesPurchBothBR
microsoft.dynamics365.finance.system: LedgerPeriodType
LedgerPeriodType
microsoft.dynamics365.finance.system: PeriodUnitCalc
PeriodUnitCalc
microsoft.dynamics365.finance.system: Timezone
Timezone
microsoft.dynamics365.finance.system: TaxTypeIN
TaxTypeIN
microsoft.dynamics365.finance.system: DocuFilePlace
DocuFilePlace
microsoft.dynamics365.finance.system: StartEnd
StartEnd
microsoft.dynamics365.finance.system: EconomicActivityType
EconomicActivityType
microsoft.dynamics365.finance.system: DocuRemoveOption
DocuRemoveOption
microsoft.dynamics365.finance.system: NoYes
NoYes
Import
import ballerinax/microsoft.dynamics365.finance.system;Other versions
0.8.0
Metadata
Released date: 1 day ago
Version: 0.8.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 0
Current verison: 0
Weekly downloads
Keywords
Name/Microsoft Dynamics 365 Finance System
Area/System
Vendor/Microsoft
Dynamics365
Finance
ERP
Type/Connector
System
Configuration
Reference
Contributors