microsoft.dynamics365.finance.core
Module microsoft.dynamics365.finance.core
API
Definitions
ballerinax/microsoft.dynamics365.finance.core 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.core connector provides access to Microsoft Dynamics 365 Finance Core entities via the OData REST API.
Key Features
- Manage core 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.core connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/microsoft.dynamics365.finance.core;
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" core: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
core:AddressBooksCollection results = check cl->listAddressBooks();
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.core: 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
listAddressBooks
function listAddressBooks(map<string|string[]> headers, *ListAddressBooksQueries queries) returns AddressBooksCollection|errorList AddressBooks
Parameters
- queries *ListAddressBooksQueries - Queries to be sent with the request
Return Type
- AddressBooksCollection|error - Collection of AddressBooks
createAddressBooks
function createAddressBooks(AddressBooks payload, map<string|string[]> headers) returns AddressBooks|errorCreate AddressBooks
Parameters
- payload AddressBooks - The request body
Return Type
- AddressBooks|error - AddressBooks created
getAddressBooks
function getAddressBooks(string name, map<string|string[]> headers, *GetAddressBooksQueries queries) returns AddressBooks|errorGet AddressBooks by key
Parameters
- name string - The name key field
- queries *GetAddressBooksQueries - Queries to be sent with the request
Return Type
- AddressBooks|error - AddressBooks
deleteAddressBooks
function deleteAddressBooks(string name, DeleteAddressBooksHeaders headers) returns error?Delete AddressBooks
Parameters
- name string - The name key field
- headers DeleteAddressBooksHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AddressBooks deleted
updateAddressBooks
function updateAddressBooks(string name, AddressBooks payload, UpdateAddressBooksHeaders headers) returns AddressBooks|errorUpdate AddressBooks
Parameters
- name string - The name key field
- payload AddressBooks - The request body
- headers UpdateAddressBooksHeaders (default {}) - Headers to be sent with the request
Return Type
- AddressBooks|error - AddressBooks updated
listAddressCities
function listAddressCities(map<string|string[]> headers, *ListAddressCitiesQueries queries) returns AddressCitiesCollection|errorList AddressCities
Parameters
- queries *ListAddressCitiesQueries - Queries to be sent with the request
Return Type
- AddressCitiesCollection|error - Collection of AddressCity
createAddressCities
function createAddressCities(AddressCity payload, map<string|string[]> headers) returns AddressCity|errorCreate AddressCity
Parameters
- payload AddressCity - The request body
Return Type
- AddressCity|error - AddressCity created
getAddressCities
function getAddressCities(string cityKey, map<string|string[]> headers, *GetAddressCitiesQueries queries) returns AddressCity|errorGet AddressCity by key
Parameters
- cityKey string - The city key key field
- queries *GetAddressCitiesQueries - Queries to be sent with the request
Return Type
- AddressCity|error - AddressCity
deleteAddressCities
function deleteAddressCities(string cityKey, DeleteAddressCitiesHeaders headers) returns error?Delete AddressCity
Parameters
- cityKey string - The city key key field
- headers DeleteAddressCitiesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AddressCity deleted
updateAddressCities
function updateAddressCities(string cityKey, AddressCity payload, UpdateAddressCitiesHeaders headers) returns AddressCity|errorUpdate AddressCity
Parameters
- cityKey string - The city key key field
- payload AddressCity - The request body
- headers UpdateAddressCitiesHeaders (default {}) - Headers to be sent with the request
Return Type
- AddressCity|error - AddressCity updated
listAddressFormats
function listAddressFormats(map<string|string[]> headers, *ListAddressFormatsQueries queries) returns AddressFormatsCollection|errorList AddressFormats
Parameters
- queries *ListAddressFormatsQueries - Queries to be sent with the request
Return Type
- AddressFormatsCollection|error - Collection of AddressFormat
createAddressFormats
function createAddressFormats(AddressFormat payload, map<string|string[]> headers) returns AddressFormat|errorCreate AddressFormat
Parameters
- payload AddressFormat - The request body
Return Type
- AddressFormat|error - AddressFormat created
getAddressFormats
function getAddressFormats(string addressFormat, map<string|string[]> headers, *GetAddressFormatsQueries queries) returns AddressFormat|errorGet AddressFormat by key
Parameters
- addressFormat string - The address format key field
- queries *GetAddressFormatsQueries - Queries to be sent with the request
Return Type
- AddressFormat|error - AddressFormat
deleteAddressFormats
function deleteAddressFormats(string addressFormat, DeleteAddressFormatsHeaders headers) returns error?Delete AddressFormat
Parameters
- addressFormat string - The address format key field
- headers DeleteAddressFormatsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AddressFormat deleted
updateAddressFormats
function updateAddressFormats(string addressFormat, AddressFormat payload, UpdateAddressFormatsHeaders headers) returns AddressFormat|errorUpdate AddressFormat
Parameters
- addressFormat string - The address format key field
- payload AddressFormat - The request body
- headers UpdateAddressFormatsHeaders (default {}) - Headers to be sent with the request
Return Type
- AddressFormat|error - AddressFormat updated
listAddressObjects
function listAddressObjects(map<string|string[]> headers, *ListAddressObjectsQueries queries) returns AddressObjectsCollection|errorList AddressObjects
Parameters
- queries *ListAddressObjectsQueries - Queries to be sent with the request
Return Type
- AddressObjectsCollection|error - Collection of AddressObject
createAddressObjects
function createAddressObjects(AddressObject payload, map<string|string[]> headers) returns AddressObject|errorCreate AddressObject
Parameters
- payload AddressObject - The request body
Return Type
- AddressObject|error - AddressObject created
getAddressObjects
function getAddressObjects(string dataAreaId, string aOId, map<string|string[]> headers, *GetAddressObjectsQueries queries) returns AddressObject|errorGet AddressObject by key
Parameters
- dataAreaId string - The company data area identifier
- aOId string - The a o id key field
- queries *GetAddressObjectsQueries - Queries to be sent with the request
Return Type
- AddressObject|error - AddressObject
deleteAddressObjects
function deleteAddressObjects(string dataAreaId, string aOId, DeleteAddressObjectsHeaders headers) returns error?Delete AddressObject
Parameters
- dataAreaId string - The company data area identifier
- aOId string - The a o id key field
- headers DeleteAddressObjectsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AddressObject deleted
updateAddressObjects
function updateAddressObjects(string dataAreaId, string aOId, AddressObject payload, UpdateAddressObjectsHeaders headers) returns AddressObject|errorUpdate AddressObject
Parameters
- dataAreaId string - The company data area identifier
- aOId string - The a o id key field
- payload AddressObject - The request body
- headers UpdateAddressObjectsHeaders (default {}) - Headers to be sent with the request
Return Type
- AddressObject|error - AddressObject updated
listAddressStates
function listAddressStates(map<string|string[]> headers, *ListAddressStatesQueries queries) returns AddressStatesCollection|errorList AddressStates
Parameters
- queries *ListAddressStatesQueries - Queries to be sent with the request
Return Type
- AddressStatesCollection|error - Collection of AddressState
createAddressStates
function createAddressStates(AddressState payload, map<string|string[]> headers) returns AddressState|errorCreate AddressState
Parameters
- payload AddressState - The request body
Return Type
- AddressState|error - AddressState created
getAddressStates
function getAddressStates(string countryRegionId, string state, map<string|string[]> headers, *GetAddressStatesQueries queries) returns AddressState|errorGet AddressState by key
Parameters
- countryRegionId string - The country region id key field
- state string - The state key field
- queries *GetAddressStatesQueries - Queries to be sent with the request
Return Type
- AddressState|error - AddressState
deleteAddressStates
function deleteAddressStates(string countryRegionId, string state, DeleteAddressStatesHeaders headers) returns error?Delete AddressState
Parameters
- countryRegionId string - The country region id key field
- state string - The state key field
- headers DeleteAddressStatesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AddressState deleted
updateAddressStates
function updateAddressStates(string countryRegionId, string state, AddressState payload, UpdateAddressStatesHeaders headers) returns AddressState|errorUpdate AddressState
Parameters
- countryRegionId string - The country region id key field
- state string - The state key field
- payload AddressState - The request body
- headers UpdateAddressStatesHeaders (default {}) - Headers to be sent with the request
Return Type
- AddressState|error - AddressState updated
listBranches
function listBranches(map<string|string[]> headers, *ListBranchesQueries queries) returns BranchesCollection|errorList Branches
Parameters
- queries *ListBranchesQueries - Queries to be sent with the request
Return Type
- BranchesCollection|error - Collection of Branch
createBranches
Create Branch
Parameters
- payload Branch - The request body
getBranches
function getBranches(string dataAreaId, string code, map<string|string[]> headers, *GetBranchesQueries queries) returns Branch|errorGet Branch by key
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- queries *GetBranchesQueries - Queries to be sent with the request
deleteBranches
function deleteBranches(string dataAreaId, string code, DeleteBranchesHeaders headers) returns error?Delete Branch
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- headers DeleteBranchesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Branch deleted
updateBranches
function updateBranches(string dataAreaId, string code, Branch payload, UpdateBranchesHeaders headers) returns Branch|errorUpdate Branch
Parameters
- dataAreaId string - The company data area identifier
- code string - The code key field
- payload Branch - The request body
- headers UpdateBranchesHeaders (default {}) - Headers to be sent with the request
listBusinessUnits
function listBusinessUnits(map<string|string[]> headers, *ListBusinessUnitsQueries queries) returns BusinessUnitsCollection|errorList BusinessUnits
Parameters
- queries *ListBusinessUnitsQueries - Queries to be sent with the request
Return Type
- BusinessUnitsCollection|error - Collection of BusinessUnit
createBusinessUnits
function createBusinessUnits(BusinessUnit payload, map<string|string[]> headers) returns BusinessUnit|errorCreate BusinessUnit
Parameters
- payload BusinessUnit - The request body
Return Type
- BusinessUnit|error - BusinessUnit created
getBusinessUnits
function getBusinessUnits(string operatingUnitNumber, map<string|string[]> headers, *GetBusinessUnitsQueries queries) returns BusinessUnit|errorGet BusinessUnit by key
Parameters
- operatingUnitNumber string - The operating unit number key field
- queries *GetBusinessUnitsQueries - Queries to be sent with the request
Return Type
- BusinessUnit|error - BusinessUnit
deleteBusinessUnits
function deleteBusinessUnits(string operatingUnitNumber, DeleteBusinessUnitsHeaders headers) returns error?Delete BusinessUnit
Parameters
- operatingUnitNumber string - The operating unit number key field
- headers DeleteBusinessUnitsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - BusinessUnit deleted
updateBusinessUnits
function updateBusinessUnits(string operatingUnitNumber, BusinessUnit payload, UpdateBusinessUnitsHeaders headers) returns BusinessUnit|errorUpdate BusinessUnit
Parameters
- operatingUnitNumber string - The operating unit number key field
- payload BusinessUnit - The request body
- headers UpdateBusinessUnitsHeaders (default {}) - Headers to be sent with the request
Return Type
- BusinessUnit|error - BusinessUnit updated
listCDSParties
function listCDSParties(map<string|string[]> headers, *ListCDSPartiesQueries queries) returns CDSPartiesCollection|errorList CDSParties
Parameters
- queries *ListCDSPartiesQueries - Queries to be sent with the request
Return Type
- CDSPartiesCollection|error - Collection of CDSParty
createCDSParties
Create CDSParty
Parameters
- payload CDSParty - The request body
getCDSParties
function getCDSParties(string partyNumber, map<string|string[]> headers, *GetCDSPartiesQueries queries) returns CDSParty|errorGet CDSParty by key
Parameters
- partyNumber string - The party number key field
- queries *GetCDSPartiesQueries - Queries to be sent with the request
deleteCDSParties
function deleteCDSParties(string partyNumber, DeleteCDSPartiesHeaders headers) returns error?Delete CDSParty
Parameters
- partyNumber string - The party number key field
- headers DeleteCDSPartiesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - CDSParty deleted
updateCDSParties
function updateCDSParties(string partyNumber, CDSParty payload, UpdateCDSPartiesHeaders headers) returns CDSParty|errorUpdate CDSParty
Parameters
- partyNumber string - The party number key field
- payload CDSParty - The request body
- headers UpdateCDSPartiesHeaders (default {}) - Headers to be sent with the request
listCompanies
function listCompanies(map<string|string[]> headers, *ListCompaniesQueries queries) returns CompaniesCollection|errorList Companies
Parameters
- queries *ListCompaniesQueries - Queries to be sent with the request
Return Type
- CompaniesCollection|error - Collection of Company
createCompanies
Create Company
Parameters
- payload Company - The request body
getCompanies
function getCompanies(string dataArea, map<string|string[]> headers, *GetCompaniesQueries queries) returns Company|errorGet Company by key
Parameters
- dataArea string - The data area key field
- queries *GetCompaniesQueries - Queries to be sent with the request
deleteCompanies
function deleteCompanies(string dataArea, DeleteCompaniesHeaders headers) returns error?Delete Company
Parameters
- dataArea string - The data area key field
- headers DeleteCompaniesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Company deleted
updateCompanies
function updateCompanies(string dataArea, Company payload, UpdateCompaniesHeaders headers) returns Company|errorUpdate Company
Parameters
- dataArea string - The data area key field
- payload Company - The request body
- headers UpdateCompaniesHeaders (default {}) - Headers to be sent with the request
listDepartments
function listDepartments(map<string|string[]> headers, *ListDepartmentsQueries queries) returns DepartmentsCollection|errorList Departments
Parameters
- queries *ListDepartmentsQueries - Queries to be sent with the request
Return Type
- DepartmentsCollection|error - Collection of Department
createDepartments
function createDepartments(Department payload, map<string|string[]> headers) returns Department|errorCreate Department
Parameters
- payload Department - The request body
Return Type
- Department|error - Department created
getDepartments
function getDepartments(string partyNumber, map<string|string[]> headers, *GetDepartmentsQueries queries) returns Department|errorGet Department by key
Parameters
- partyNumber string - The party number key field
- queries *GetDepartmentsQueries - Queries to be sent with the request
Return Type
- Department|error - Department
deleteDepartments
function deleteDepartments(string partyNumber, DeleteDepartmentsHeaders headers) returns error?Delete Department
Parameters
- partyNumber string - The party number key field
- headers DeleteDepartmentsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Department deleted
updateDepartments
function updateDepartments(string partyNumber, Department payload, UpdateDepartmentsHeaders headers) returns Department|errorUpdate Department
Parameters
- partyNumber string - The party number key field
- payload Department - The request body
- headers UpdateDepartmentsHeaders (default {}) - Headers to be sent with the request
Return Type
- Department|error - Department updated
listDepartmentsV2
function listDepartmentsV2(map<string|string[]> headers, *ListDepartmentsV2Queries queries) returns DepartmentsV2Collection|errorList DepartmentsV2
Parameters
- queries *ListDepartmentsV2Queries - Queries to be sent with the request
Return Type
- DepartmentsV2Collection|error - Collection of DepartmentV2
createDepartmentsV2
function createDepartmentsV2(DepartmentV2 payload, map<string|string[]> headers) returns DepartmentV2|errorCreate DepartmentV2
Parameters
- payload DepartmentV2 - The request body
Return Type
- DepartmentV2|error - DepartmentV2 created
getDepartmentsV2
function getDepartmentsV2(string operatingUnitNumber, map<string|string[]> headers, *GetDepartmentsV2Queries queries) returns DepartmentV2|errorGet DepartmentV2 by key
Parameters
- operatingUnitNumber string - The operating unit number key field
- queries *GetDepartmentsV2Queries - Queries to be sent with the request
Return Type
- DepartmentV2|error - DepartmentV2
deleteDepartmentsV2
function deleteDepartmentsV2(string operatingUnitNumber, DeleteDepartmentsV2Headers headers) returns error?Delete DepartmentV2
Parameters
- operatingUnitNumber string - The operating unit number key field
- headers DeleteDepartmentsV2Headers (default {}) - Headers to be sent with the request
Return Type
- error? - DepartmentV2 deleted
updateDepartmentsV2
function updateDepartmentsV2(string operatingUnitNumber, DepartmentV2 payload, UpdateDepartmentsV2Headers headers) returns DepartmentV2|errorUpdate DepartmentV2
Parameters
- operatingUnitNumber string - The operating unit number key field
- payload DepartmentV2 - The request body
- headers UpdateDepartmentsV2Headers (default {}) - Headers to be sent with the request
Return Type
- DepartmentV2|error - DepartmentV2 updated
Records
microsoft.dynamics365.finance.core: AddressBooks
Fields
- description? string -
- system? NoYes -
- name? string -
microsoft.dynamics365.finance.core: AddressBooksCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AddressBooksCollectionAllOf2
- value AddressBooks[]
- anydata...
microsoft.dynamics365.finance.core: AddressBooksCollectionAllOf2
Fields
- value? AddressBooks[] -
microsoft.dynamics365.finance.core: AddressCitiesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AddressCitiesCollectionAllOf2
- value AddressCity[]
- anydata...
microsoft.dynamics365.finance.core: AddressCitiesCollectionAllOf2
Fields
- value? AddressCity[] -
microsoft.dynamics365.finance.core: AddressCity
Fields
- description? string -
- countryRegionId? string -
- stateId? string -
- countyId? string -
- italyCityCode? string -
- cityKey? string -
- italyMunicipalityCode? string -
- cityInKana? string -
- brazilCityCode? string -
- name? string -
microsoft.dynamics365.finance.core: AddressFormat
Fields
- addressFormat? string -
- description? string -
microsoft.dynamics365.finance.core: AddressFormatsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AddressFormatsCollectionAllOf2
- value AddressFormat[]
- anydata...
microsoft.dynamics365.finance.core: AddressFormatsCollectionAllOf2
Fields
- value? AddressFormat[] -
microsoft.dynamics365.finance.core: AddressObject
Fields
- cityCode? string -
- regionCode? string -
- parentGuid? string -
- placeCode? string -
- postalCode? string -
- shortName? string -
- terrIFNSFL? string -
- dataAreaId? string -
- aOLevel? string -
- oKATO? string -
- planCode? string -
- offName? string -
- operStatus? string -
- extrCode? string -
- liveStatus? string -
- nextId? string -
- divType? string -
- aOGuid? string -
- aOId? string -
- prevId? string -
- iFNSFL? string -
- streetCode? string -
- areaCode? string -
- ctArCode? string -
- actStatus? string -
microsoft.dynamics365.finance.core: AddressObjectsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AddressObjectsCollectionAllOf2
- value AddressObject[]
- anydata...
microsoft.dynamics365.finance.core: AddressObjectsCollectionAllOf2
Fields
- value? AddressObject[] -
microsoft.dynamics365.finance.core: AddressState
Fields
- brazilStateCode? string -
- timeZone? Timezone -
- defaultStateForCountryRegion? NoYes -
- countryRegionId? string -
- state? string -
- intrastatCode? string -
- name? string -
microsoft.dynamics365.finance.core: AddressStatesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AddressStatesCollectionAllOf2
- value AddressState[]
- anydata...
microsoft.dynamics365.finance.core: AddressStatesCollectionAllOf2
Fields
- value? AddressState[] -
microsoft.dynamics365.finance.core: Branch
Fields
- dataAreaId? string -
- address? string -
- logisticsLocationLocationId? string -
- headOffice? NoYes -
- code? string -
- name? string -
microsoft.dynamics365.finance.core: BranchesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *BranchesCollectionAllOf2
- value Branch[]
- anydata...
microsoft.dynamics365.finance.core: BranchesCollectionAllOf2
Fields
- value? Branch[] -
microsoft.dynamics365.finance.core: BusinessUnit
Fields
- primaryContactEmailPurpose? string -
- primaryContactEmail? string -
- primaryContactPhonePurpose? string -
- name? string -
- primaryContactPhoneDescription? string -
- addressCity? string -
- primaryContactTwitterDescription? string -
- addressLongitude? decimal -
- primaryContactTwitter? string -
- addressValidFrom? string -
- primaryContactPhoneExtension? string -
- primaryContactEmailIsIM? NoYes -
- operatingUnitType? OMOperatingUnitType -
- primaryContactFax? string -
- addressTimeZone? Timezone -
- primaryContactLinkedIn? string -
- dunsNumber? string -
- addressLocationId? string -
- addressCountryRegionId? string -
- primaryContactTwitterPurpose? string -
- addressCountryRegionISOCode? string -
- fullPrimaryAddress? string -
- primaryContactLinkedInPurpose? string -
- phoneticName? string -
- nameAlias? string -
- addressValidTo? string -
- primaryContactURLDescription? string -
- primaryContactFacebookDescription? string -
- addressZipCode? string -
- operatingUnitNumber? string -
- addressLocationRoles? string -
- addressBooks? string -
- primaryContactURL? string -
- primaryContactFacebookPurpose? string -
- primaryContactLinkedInIsPrivate? NoYes -
- primaryContactURLPurpose? string -
- addressCounty? string -
- primaryContactEmailDescription? string -
- primaryContactLinkedInDescription? string -
- addressDescription? string -
- primaryContactTwitterIsPrivate? NoYes -
- primaryContactPhoneIsMobile? NoYes -
- primaryContactPhone? string -
- primaryContactTelexDescription? string -
- primaryContactFaxExtension? string -
- primaryContactTelexPurpose? string -
- primaryContactFacebook? string -
- electronicLocationId? string -
- primaryContactFacebookIsPrivate? NoYes -
- addressDistrictName? string -
- partyNumber? string -
- primaryContactFaxPurpose? string -
- primaryContactFaxDescription? string -
- primaryContactTelex? string -
- addressStreet? string -
- languageId? string -
- addressState? string -
- addressLatitude? decimal -
microsoft.dynamics365.finance.core: BusinessUnitsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *BusinessUnitsCollectionAllOf2
- value BusinessUnit[]
- anydata...
microsoft.dynamics365.finance.core: BusinessUnitsCollectionAllOf2
Fields
- value? BusinessUnit[] -
microsoft.dynamics365.finance.core: CDSPartiesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *CDSPartiesCollectionAllOf2
- value CDSParty[]
- anydata...
microsoft.dynamics365.finance.core: CDSPartiesCollectionAllOf2
Fields
- value? CDSParty[] -
microsoft.dynamics365.finance.core: CDSParty
Fields
- organizationName? string -
- personPhoneticLastName? string -
- organizationNumber? string -
- personBirthMonth? MonthsOfYear -
- addressBooks? string -
- personLastNamePrefix? string -
- knownAs? string -
- personMiddleName? string -
- personPhoneticFirstName? string -
- personAnniversaryMonth? MonthsOfYear -
- personPersonalTitle? string -
- personAnniversaryYear? Signed32 -
- personPhoneticMiddleName? string -
- personBirthDay? Signed32 -
- partyType? string -
- personPersonalSuffix? string -
- personLastName? string -
- organizationABCCode? ABC -
- personAnniversaryDay? Signed32 -
- personProfessionalSuffix? string -
- personBirthYear? Signed32 -
- personFirstName? string -
- personMaritalStatus? DirPersonMaritalStatus -
- partyNumber? string -
- organizationPhoneticName? string -
- organizationNumOfEmployees? Signed32 -
- personProfessionalTitle? string -
- personHobbies? string -
- nameAlias? string -
- personInitials? string -
- personGender? Gender -
- languageId? string -
- personChildrenNames? string -
microsoft.dynamics365.finance.core: CompaniesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *CompaniesCollectionAllOf2
- value Company[]
- anydata...
microsoft.dynamics365.finance.core: CompaniesCollectionAllOf2
Fields
- value? Company[] -
microsoft.dynamics365.finance.core: Company
Fields
- partyNumber? string -
- dataArea? string -
- knownAs? string -
- languageId? string -
- name? string -
microsoft.dynamics365.finance.core: 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.core: DeleteAddressBooksHeaders
Represents the Headers record for the operation: deleteAddressBooks
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteAddressCitiesHeaders
Represents the Headers record for the operation: deleteAddressCities
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteAddressFormatsHeaders
Represents the Headers record for the operation: deleteAddressFormats
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteAddressObjectsHeaders
Represents the Headers record for the operation: deleteAddressObjects
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteAddressStatesHeaders
Represents the Headers record for the operation: deleteAddressStates
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteBranchesHeaders
Represents the Headers record for the operation: deleteBranches
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteBusinessUnitsHeaders
Represents the Headers record for the operation: deleteBusinessUnits
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteCDSPartiesHeaders
Represents the Headers record for the operation: deleteCDSParties
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteCompaniesHeaders
Represents the Headers record for the operation: deleteCompanies
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteDepartmentsHeaders
Represents the Headers record for the operation: deleteDepartments
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: DeleteDepartmentsV2Headers
Represents the Headers record for the operation: deleteDepartmentsV2
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: Department
Fields
- primaryContactEmailPurpose? string -
- searchName? string -
- primaryContactEmail? string -
- primaryContactPhonePurpose? string -
- name? string -
- primaryContactPhoneDescription? string -
- primaryAddressDescription? string -
- primaryContactTwitterDescription? string -
- primaryContactTwitter? string -
- primaryContactEmailIsIM? NoYes -
- primaryContactPhoneExtension? string -
- primaryAddressCity? string -
- primaryContactFax? string -
- primaryContactLinkedIn? string -
- primaryContactTwitterPurpose? string -
- primaryContactLinkedInPurpose? string -
- primaryContactURLDescription? string -
- primaryContactFacebookDescription? string -
- primaryAddressStreet? string -
- operatingUnitNumber? string -
- addressLocationRoles? string -
- primaryAddressCounty? string -
- primaryContactURL? string -
- primaryContactFacebookPurpose? string -
- knownAs? string -
- primaryContactLinkedInIsPrivate? NoYes -
- primaryAddressState? string -
- primaryContactURLPurpose? string -
- primaryContactEmailDescription? string -
- language? string -
- operatingUnitTypes? OMOperatingUnitType -
- primaryContactLinkedInDescription? string -
- primaryContactTwitterIsPrivate? NoYes -
- primaryAddressCountryRegionISOCode? string -
- primaryContactPhoneIsMobile? NoYes -
- partyType? string -
- primaryContactPhone? string -
- primaryContactTelexDescription? string -
- primaryContactFaxExtension? string -
- primaryContactTelexPurpose? string -
- primaryContactFacebook? string -
- primaryContactFacebookIsPrivate? NoYes -
- organizationType? OMInternalOrganizationType -
- partyNumber? string -
- primaryContactFaxPurpose? string -
- primaryContactFaxDescription? string -
- primaryAddressCountryRegionId? string -
- primaryContactTelex? string -
- primaryAddressValidFrom? string -
- primaryAddressValidTo? string -
- primaryAddressZipCode? string -
- memo? string -
microsoft.dynamics365.finance.core: DepartmentsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *DepartmentsCollectionAllOf2
- value Department[]
- anydata...
microsoft.dynamics365.finance.core: DepartmentsCollectionAllOf2
Fields
- value? Department[] -
microsoft.dynamics365.finance.core: DepartmentsV2Collection
Fields
- Fields Included from *ODataCollection
- Fields Included from *DepartmentsV2CollectionAllOf2
- value DepartmentV2[]
- anydata...
microsoft.dynamics365.finance.core: DepartmentsV2CollectionAllOf2
Fields
- value? DepartmentV2[] -
microsoft.dynamics365.finance.core: DepartmentV2
Fields
- primaryContactEmailPurpose? string -
- searchName? string -
- primaryContactEmail? string -
- primaryContactPhonePurpose? string -
- name? string -
- primaryContactPhoneDescription? string -
- primaryAddressDescription? string -
- primaryContactTwitterDescription? string -
- primaryContactTwitter? string -
- primaryContactEmailIsIM? NoYes -
- primaryContactPhoneExtension? string -
- primaryAddressCity? string -
- primaryContactFax? string -
- primaryContactLinkedIn? string -
- primaryContactTwitterPurpose? string -
- primaryContactLinkedInPurpose? string -
- primaryContactURLDescription? string -
- primaryContactFacebookDescription? string -
- operatingUnitNumber? string -
- primaryAddressStreet? string -
- addressLocationRoles? string -
- primaryAddressCounty? string -
- primaryContactURL? string -
- primaryContactFacebookPurpose? string -
- knownAs? string -
- primaryContactLinkedInIsPrivate? NoYes -
- primaryAddressState? string -
- primaryContactURLPurpose? string -
- primaryContactEmailDescription? string -
- language? string -
- operatingUnitTypes? OMOperatingUnitType -
- primaryContactLinkedInDescription? string -
- primaryContactTwitterIsPrivate? NoYes -
- primaryAddressCountryRegionISOCode? string -
- primaryContactPhoneIsMobile? NoYes -
- partyType? string -
- primaryContactPhone? string -
- primaryContactTelexDescription? string -
- primaryContactFaxExtension? string -
- primaryContactTelexPurpose? string -
- primaryContactFacebook? string -
- primaryContactFacebookIsPrivate? NoYes -
- organizationType? OMInternalOrganizationType -
- partyNumber? string -
- primaryContactFaxPurpose? string -
- primaryContactFaxDescription? string -
- primaryAddressCountryRegionId? string -
- primaryContactTelex? string -
- primaryAddressValidFrom? string -
- primaryAddressValidTo? string -
- primaryAddressZipCode? string -
- memo? string -
microsoft.dynamics365.finance.core: GetAddressBooksQueries
Represents the Queries record for the operation: getAddressBooks
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.core: GetAddressCitiesQueries
Represents the Queries record for the operation: getAddressCities
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.core: GetAddressFormatsQueries
Represents the Queries record for the operation: getAddressFormats
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.core: GetAddressObjectsQueries
Represents the Queries record for the operation: getAddressObjects
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.core: GetAddressStatesQueries
Represents the Queries record for the operation: getAddressStates
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.core: GetBranchesQueries
Represents the Queries record for the operation: getBranches
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.core: GetBusinessUnitsQueries
Represents the Queries record for the operation: getBusinessUnits
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.core: GetCDSPartiesQueries
Represents the Queries record for the operation: getCDSParties
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.core: GetCompaniesQueries
Represents the Queries record for the operation: getCompanies
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.core: GetDepartmentsQueries
Represents the Queries record for the operation: getDepartments
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.core: GetDepartmentsV2Queries
Represents the Queries record for the operation: getDepartmentsV2
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.core: LegalEntity
Fields
- primaryContactEmailPurpose? string -
- fiscalCode? string -
- primaryContactEmail? string -
- cUC? string -
- nationalClassificationOfCompanyEconomicActivity? string -
- addressCity? string -
- addressLongitude? decimal -
- primaryContactTwitter? string -
- primaryContactEmailIsIM? NoYes -
- printINNKPPInAddress? NoYes -
- legalNature? LegalNatureIT -
- accountsOfficeReferenceNumber? string -
- primaryContactFax? string -
- useForFinancialEliminationProcess? NoYes -
- importVATNum? string -
- primaryContactLinkedIn? string -
- companyType? CompanyTypeMX -
- startDateOfBusiness? string -
- addressCountryRegionId? string -
- primaryContactTwitterPurpose? string -
- addressCountryRegionISOCode? string -
- fullPrimaryAddress? string -
- primaryContactLinkedInPurpose? string -
- timeZone? Timezone -
- nameAlias? string -
- primaryAddressLocationId? string -
- primaryContactURLDescription? string -
- primaryContactFacebookDescription? string -
- addressZipCode? string -
- vATOnCustomerBehalf? NoYes -
- addressLocationRoles? string -
- softwareIdentificationCode? string -
- stateInscription? string -
- externalLegalRepresentativeName? string -
- primaryContactURLPurpose? string -
- printCorrectiveInvoice? NoYes -
- rfcLegalRepresentative? string -
- dNBRoutingNumber? string -
- legalEntityId? string -
- addressDescription? string -
- profitMarginScheme? NoYes -
- registrationNumber? string -
- traderNumber? string -
- primaryContactPhoneIsMobile? NoYes -
- certifiedTaxAccountantName? string -
- accountingPersonnel? string -
- primaryContactFacebook? string -
- primaryContactFacebookIsPrivate? NoYes -
- useForFinancialConsolidationProcess? NoYes -
- primaryContactFaxPurpose? string -
- addressStreet? string -
- nationalRegistryNumber? string -
- vATRefund? NoYes -
- curpNumber? string -
- primaryContactPhonePurpose? string -
- rfc? string -
- name? string -
- nAICS? string -
- companyName? string -
- primaryContactPhoneDescription? string -
- primaryContactTwitterDescription? string -
- addressValidFrom? string -
- primaryContactPhoneExtension? string -
- initialCapitalInvestment? decimal -
- legalForm? string -
- printEnterpriseRegister? NoYes -
- addressTimeZone? Timezone -
- reportFolder? string -
- phoneticName? string -
- legalRepresentativeName? string -
- personInCharge? string -
- addressValidTo? string -
- businessItem? string -
- vATNum? string -
- companyRepresentative? string -
- addressBooks? string -
- primaryContactURL? string -
- primaryContactFacebookPurpose? string -
- primaryContactLinkedInIsPrivate? NoYes -
- addressCounty? string -
- printCorrectiveInvoiceStartingDate? string -
- primaryContactEmailDescription? string -
- primaryContactLinkedInDescription? string -
- primaryContactTwitterIsPrivate? NoYes -
- curpLegalRepresentative? string -
- primaryContactPhone? string -
- fICreditorID? string -
- primaryContactTelexDescription? string -
- localizationCountryRegionCode? SysLocalizationCountryRegionCode -
- primaryContactFaxExtension? string -
- primaryContactTelexPurpose? string -
- commerceRegistration? string -
- addressDistrictName? string -
- partyNumber? string -
- primaryContactFaxDescription? string -
- primaryContactTelex? string -
- languageId? string -
- addressState? string -
- companyCountry? string -
- addressLatitude? decimal -
microsoft.dynamics365.finance.core: ListAddressBooksQueries
Represents the Queries record for the operation: listAddressBooks
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.core: ListAddressCitiesQueries
Represents the Queries record for the operation: listAddressCities
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.core: ListAddressFormatsQueries
Represents the Queries record for the operation: listAddressFormats
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.core: ListAddressObjectsQueries
Represents the Queries record for the operation: listAddressObjects
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.core: ListAddressStatesQueries
Represents the Queries record for the operation: listAddressStates
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.core: ListBranchesQueries
Represents the Queries record for the operation: listBranches
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.core: ListBusinessUnitsQueries
Represents the Queries record for the operation: listBusinessUnits
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.core: ListCDSPartiesQueries
Represents the Queries record for the operation: listCDSParties
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.core: ListCompaniesQueries
Represents the Queries record for the operation: listCompanies
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.core: ListDepartmentsQueries
Represents the Queries record for the operation: listDepartments
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.core: ListDepartmentsV2Queries
Represents the Queries record for the operation: listDepartmentsV2
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.core: 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.core: ODataCollection
Fields
- odataNextLink? string -
- odataCount? int -
- odataContext? string -
microsoft.dynamics365.finance.core: UpdateAddressBooksHeaders
Represents the Headers record for the operation: updateAddressBooks
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateAddressCitiesHeaders
Represents the Headers record for the operation: updateAddressCities
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateAddressFormatsHeaders
Represents the Headers record for the operation: updateAddressFormats
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateAddressObjectsHeaders
Represents the Headers record for the operation: updateAddressObjects
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateAddressStatesHeaders
Represents the Headers record for the operation: updateAddressStates
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateBranchesHeaders
Represents the Headers record for the operation: updateBranches
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateBusinessUnitsHeaders
Represents the Headers record for the operation: updateBusinessUnits
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateCDSPartiesHeaders
Represents the Headers record for the operation: updateCDSParties
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateCompaniesHeaders
Represents the Headers record for the operation: updateCompanies
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateDepartmentsHeaders
Represents the Headers record for the operation: updateDepartments
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.core: UpdateDepartmentsV2Headers
Represents the Headers record for the operation: updateDepartmentsV2
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
Union types
microsoft.dynamics365.finance.core: DirPersonMaritalStatus
DirPersonMaritalStatus
microsoft.dynamics365.finance.core: SysLocalizationCountryRegionCode
SysLocalizationCountryRegionCode
microsoft.dynamics365.finance.core: ABC
ABC
microsoft.dynamics365.finance.core: MonthsOfYear
MonthsOfYear
microsoft.dynamics365.finance.core: Timezone
Timezone
microsoft.dynamics365.finance.core: CompanyTypeMX
CompanyTypeMX
microsoft.dynamics365.finance.core: Gender
Gender
microsoft.dynamics365.finance.core: OMInternalOrganizationType
OMInternalOrganizationType
microsoft.dynamics365.finance.core: LegalNatureIT
LegalNatureIT
microsoft.dynamics365.finance.core: OMOperatingUnitType
OMOperatingUnitType
microsoft.dynamics365.finance.core: NoYes
NoYes
Import
import ballerinax/microsoft.dynamics365.finance.core;Other versions
0.8.0
Metadata
Released date: 2 days 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 Core
Area/Finance & Accounting
Vendor/Microsoft
Dynamics365
Finance
ERP
Type/Connector
Company
Organization
Address
Department
Contributors