microsoft.dynamics365.finance.fixedasset
Module microsoft.dynamics365.finance.fixedasset
API
Definitions
ballerinax/microsoft.dynamics365.finance.fixedasset 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.fixedasset connector provides access to Microsoft Dynamics 365 Finance Fixed Asset entities via the OData REST API.
Key Features
- Manage fixed asset 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.fixedasset connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/microsoft.dynamics365.finance.fixedasset;
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" fixedasset: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
fixedasset:AssetLendingsCollection results = check cl->listAssetLendings();
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.fixedasset: 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
listAssetLendings
function listAssetLendings(map<string|string[]> headers, *ListAssetLendingsQueries queries) returns AssetLendingsCollection|errorList AssetLendings
Parameters
- queries *ListAssetLendingsQueries - Queries to be sent with the request
Return Type
- AssetLendingsCollection|error - Collection of AssetLending
createAssetLendings
function createAssetLendings(AssetLending payload, map<string|string[]> headers) returns AssetLending|errorCreate AssetLending
Parameters
- payload AssetLending - The request body
Return Type
- AssetLending|error - AssetLending created
getAssetLendings
function getAssetLendings(string dataAreaId, string fAInventoryNumber, string dateOfLease, map<string|string[]> headers, *GetAssetLendingsQueries queries) returns AssetLending|errorGet AssetLending by key
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- dateOfLease string - The date of lease key field
- queries *GetAssetLendingsQueries - Queries to be sent with the request
Return Type
- AssetLending|error - AssetLending
deleteAssetLendings
function deleteAssetLendings(string dataAreaId, string fAInventoryNumber, string dateOfLease, DeleteAssetLendingsHeaders headers) returns error?Delete AssetLending
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- dateOfLease string - The date of lease key field
- headers DeleteAssetLendingsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AssetLending deleted
updateAssetLendings
function updateAssetLendings(string dataAreaId, string fAInventoryNumber, string dateOfLease, AssetLending payload, UpdateAssetLendingsHeaders headers) returns AssetLending|errorUpdate AssetLending
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- dateOfLease string - The date of lease key field
- payload AssetLending - The request body
- headers UpdateAssetLendingsHeaders (default {}) - Headers to be sent with the request
Return Type
- AssetLending|error - AssetLending updated
listAssetSortings
function listAssetSortings(map<string|string[]> headers, *ListAssetSortingsQueries queries) returns AssetSortingsCollection|errorList AssetSortings
Parameters
- queries *ListAssetSortingsQueries - Queries to be sent with the request
Return Type
- AssetSortingsCollection|error - Collection of AssetSorting
createAssetSortings
function createAssetSortings(AssetSorting payload, map<string|string[]> headers) returns AssetSorting|errorCreate AssetSorting
Parameters
- payload AssetSorting - The request body
Return Type
- AssetSorting|error - AssetSorting created
getAssetSortings
function getAssetSortings(string dataAreaId, string sorting, string identification, map<string|string[]> headers, *GetAssetSortingsQueries queries) returns AssetSorting|errorGet AssetSorting by key
Parameters
- dataAreaId string - The company data area identifier
- sorting string - The sorting key field
- identification string - The identification key field
- queries *GetAssetSortingsQueries - Queries to be sent with the request
Return Type
- AssetSorting|error - AssetSorting
deleteAssetSortings
function deleteAssetSortings(string dataAreaId, string sorting, string identification, DeleteAssetSortingsHeaders headers) returns error?Delete AssetSorting
Parameters
- dataAreaId string - The company data area identifier
- sorting string - The sorting key field
- identification string - The identification key field
- headers DeleteAssetSortingsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - AssetSorting deleted
updateAssetSortings
function updateAssetSortings(string dataAreaId, string sorting, string identification, AssetSorting payload, UpdateAssetSortingsHeaders headers) returns AssetSorting|errorUpdate AssetSorting
Parameters
- dataAreaId string - The company data area identifier
- sorting string - The sorting key field
- identification string - The identification key field
- payload AssetSorting - The request body
- headers UpdateAssetSortingsHeaders (default {}) - Headers to be sent with the request
Return Type
- AssetSorting|error - AssetSorting updated
listFixedAssetValueModels
function listFixedAssetValueModels(map<string|string[]> headers, *ListFixedAssetValueModelsQueries queries) returns FixedAssetValueModelsCollection|errorList FixedAssetValueModels
Parameters
- queries *ListFixedAssetValueModelsQueries - Queries to be sent with the request
Return Type
- FixedAssetValueModelsCollection|error - Collection of FixedAssetValueModel
createFixedAssetValueModels
function createFixedAssetValueModels(FixedAssetValueModel payload, map<string|string[]> headers) returns FixedAssetValueModel|errorCreate FixedAssetValueModel
Parameters
- payload FixedAssetValueModel - The request body
Return Type
- FixedAssetValueModel|error - FixedAssetValueModel created
getFixedAssetValueModels
function getFixedAssetValueModels(string dataAreaId, string fixedAssetNumber, string valueModelId, map<string|string[]> headers, *GetFixedAssetValueModelsQueries queries) returns FixedAssetValueModel|errorGet FixedAssetValueModel by key
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- valueModelId string - The value model id key field
- queries *GetFixedAssetValueModelsQueries - Queries to be sent with the request
Return Type
- FixedAssetValueModel|error - FixedAssetValueModel
deleteFixedAssetValueModels
function deleteFixedAssetValueModels(string dataAreaId, string fixedAssetNumber, string valueModelId, DeleteFixedAssetValueModelsHeaders headers) returns error?Delete FixedAssetValueModel
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- valueModelId string - The value model id key field
- headers DeleteFixedAssetValueModelsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - FixedAssetValueModel deleted
updateFixedAssetValueModels
function updateFixedAssetValueModels(string dataAreaId, string fixedAssetNumber, string valueModelId, FixedAssetValueModel payload, UpdateFixedAssetValueModelsHeaders headers) returns FixedAssetValueModel|errorUpdate FixedAssetValueModel
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- valueModelId string - The value model id key field
- payload FixedAssetValueModel - The request body
- headers UpdateFixedAssetValueModelsHeaders (default {}) - Headers to be sent with the request
Return Type
- FixedAssetValueModel|error - FixedAssetValueModel updated
listFixedAssets
function listFixedAssets(map<string|string[]> headers, *ListFixedAssetsQueries queries) returns FixedAssetsCollection|errorList FixedAssets
Parameters
- queries *ListFixedAssetsQueries - Queries to be sent with the request
Return Type
- FixedAssetsCollection|error - Collection of FixedAsset
createFixedAssets
function createFixedAssets(FixedAsset payload, map<string|string[]> headers) returns FixedAsset|errorCreate FixedAsset
Parameters
- payload FixedAsset - The request body
Return Type
- FixedAsset|error - FixedAsset created
getFixedAssets
function getFixedAssets(string dataAreaId, string fixedAssetNumber, map<string|string[]> headers, *GetFixedAssetsQueries queries) returns FixedAsset|errorGet FixedAsset by key
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- queries *GetFixedAssetsQueries - Queries to be sent with the request
Return Type
- FixedAsset|error - FixedAsset
deleteFixedAssets
function deleteFixedAssets(string dataAreaId, string fixedAssetNumber, DeleteFixedAssetsHeaders headers) returns error?Delete FixedAsset
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- headers DeleteFixedAssetsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - FixedAsset deleted
updateFixedAssets
function updateFixedAssets(string dataAreaId, string fixedAssetNumber, FixedAsset payload, UpdateFixedAssetsHeaders headers) returns FixedAsset|errorUpdate FixedAsset
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- payload FixedAsset - The request body
- headers UpdateFixedAssetsHeaders (default {}) - Headers to be sent with the request
Return Type
- FixedAsset|error - FixedAsset updated
listFixedAssetsV2
function listFixedAssetsV2(map<string|string[]> headers, *ListFixedAssetsV2Queries queries) returns FixedAssetsV2Collection|errorList FixedAssetsV2
Parameters
- queries *ListFixedAssetsV2Queries - Queries to be sent with the request
Return Type
- FixedAssetsV2Collection|error - Collection of FixedAssetV2Entity
createFixedAssetsV2
function createFixedAssetsV2(FixedAssetV2Entity payload, map<string|string[]> headers) returns FixedAssetV2Entity|errorCreate FixedAssetV2Entity
Parameters
- payload FixedAssetV2Entity - The request body
Return Type
- FixedAssetV2Entity|error - FixedAssetV2Entity created
getFixedAssetsV2
function getFixedAssetsV2(string dataAreaId, string fixedAssetNumber, map<string|string[]> headers, *GetFixedAssetsV2Queries queries) returns FixedAssetV2Entity|errorGet FixedAssetV2Entity by key
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- queries *GetFixedAssetsV2Queries - Queries to be sent with the request
Return Type
- FixedAssetV2Entity|error - FixedAssetV2Entity
deleteFixedAssetsV2
function deleteFixedAssetsV2(string dataAreaId, string fixedAssetNumber, DeleteFixedAssetsV2Headers headers) returns error?Delete FixedAssetV2Entity
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- headers DeleteFixedAssetsV2Headers (default {}) - Headers to be sent with the request
Return Type
- error? - FixedAssetV2Entity deleted
updateFixedAssetsV2
function updateFixedAssetsV2(string dataAreaId, string fixedAssetNumber, FixedAssetV2Entity payload, UpdateFixedAssetsV2Headers headers) returns FixedAssetV2Entity|errorUpdate FixedAssetV2Entity
Parameters
- dataAreaId string - The company data area identifier
- fixedAssetNumber string - The fixed asset number key field
- payload FixedAssetV2Entity - The request body
- headers UpdateFixedAssetsV2Headers (default {}) - Headers to be sent with the request
Return Type
- FixedAssetV2Entity|error - FixedAssetV2Entity updated
listLeasingGroups
function listLeasingGroups(map<string|string[]> headers, *ListLeasingGroupsQueries queries) returns LeasingGroupsCollection|errorList LeasingGroups
Parameters
- queries *ListLeasingGroupsQueries - Queries to be sent with the request
Return Type
- LeasingGroupsCollection|error - Collection of LeasingGroup
createLeasingGroups
function createLeasingGroups(LeasingGroup payload, map<string|string[]> headers) returns LeasingGroup|errorCreate LeasingGroup
Parameters
- payload LeasingGroup - The request body
Return Type
- LeasingGroup|error - LeasingGroup created
getLeasingGroups
function getLeasingGroups(string dataAreaId, string leaseGroup, map<string|string[]> headers, *GetLeasingGroupsQueries queries) returns LeasingGroup|errorGet LeasingGroup by key
Parameters
- dataAreaId string - The company data area identifier
- leaseGroup string - The lease group key field
- queries *GetLeasingGroupsQueries - Queries to be sent with the request
Return Type
- LeasingGroup|error - LeasingGroup
deleteLeasingGroups
function deleteLeasingGroups(string dataAreaId, string leaseGroup, DeleteLeasingGroupsHeaders headers) returns error?Delete LeasingGroup
Parameters
- dataAreaId string - The company data area identifier
- leaseGroup string - The lease group key field
- headers DeleteLeasingGroupsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - LeasingGroup deleted
updateLeasingGroups
function updateLeasingGroups(string dataAreaId, string leaseGroup, LeasingGroup payload, UpdateLeasingGroupsHeaders headers) returns LeasingGroup|errorUpdate LeasingGroup
Parameters
- dataAreaId string - The company data area identifier
- leaseGroup string - The lease group key field
- payload LeasingGroup - The request body
- headers UpdateLeasingGroupsHeaders (default {}) - Headers to be sent with the request
Return Type
- LeasingGroup|error - LeasingGroup updated
listParentLeases
function listParentLeases(map<string|string[]> headers, *ListParentLeasesQueries queries) returns ParentLeasesCollection|errorList ParentLeases
Parameters
- queries *ListParentLeasesQueries - Queries to be sent with the request
Return Type
- ParentLeasesCollection|error - Collection of ParentLease
createParentLeases
function createParentLeases(ParentLease payload, map<string|string[]> headers) returns ParentLease|errorCreate ParentLease
Parameters
- payload ParentLease - The request body
Return Type
- ParentLease|error - ParentLease created
getParentLeases
function getParentLeases(string dataAreaId, string leaseId, map<string|string[]> headers, *GetParentLeasesQueries queries) returns ParentLease|errorGet ParentLease by key
Parameters
- dataAreaId string - The company data area identifier
- leaseId string - The lease id key field
- queries *GetParentLeasesQueries - Queries to be sent with the request
Return Type
- ParentLease|error - ParentLease
deleteParentLeases
function deleteParentLeases(string dataAreaId, string leaseId, DeleteParentLeasesHeaders headers) returns error?Delete ParentLease
Parameters
- dataAreaId string - The company data area identifier
- leaseId string - The lease id key field
- headers DeleteParentLeasesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - ParentLease deleted
updateParentLeases
function updateParentLeases(string dataAreaId, string leaseId, ParentLease payload, UpdateParentLeasesHeaders headers) returns ParentLease|errorUpdate ParentLease
Parameters
- dataAreaId string - The company data area identifier
- leaseId string - The lease id key field
- payload ParentLease - The request body
- headers UpdateParentLeasesHeaders (default {}) - Headers to be sent with the request
Return Type
- ParentLease|error - ParentLease updated
listRAssetGroups
function listRAssetGroups(map<string|string[]> headers, *ListRAssetGroupsQueries queries) returns RAssetGroupsCollection|errorList RAssetGroups
Parameters
- queries *ListRAssetGroupsQueries - Queries to be sent with the request
Return Type
- RAssetGroupsCollection|error - Collection of RAssetGroup
createRAssetGroups
function createRAssetGroups(RAssetGroup payload, map<string|string[]> headers) returns RAssetGroup|errorCreate RAssetGroup
Parameters
- payload RAssetGroup - The request body
Return Type
- RAssetGroup|error - RAssetGroup created
getRAssetGroups
function getRAssetGroups(string dataAreaId, string depreciationGroup, map<string|string[]> headers, *GetRAssetGroupsQueries queries) returns RAssetGroup|errorGet RAssetGroup by key
Parameters
- dataAreaId string - The company data area identifier
- depreciationGroup string - The depreciation group key field
- queries *GetRAssetGroupsQueries - Queries to be sent with the request
Return Type
- RAssetGroup|error - RAssetGroup
deleteRAssetGroups
function deleteRAssetGroups(string dataAreaId, string depreciationGroup, DeleteRAssetGroupsHeaders headers) returns error?Delete RAssetGroup
Parameters
- dataAreaId string - The company data area identifier
- depreciationGroup string - The depreciation group key field
- headers DeleteRAssetGroupsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - RAssetGroup deleted
updateRAssetGroups
function updateRAssetGroups(string dataAreaId, string depreciationGroup, RAssetGroup payload, UpdateRAssetGroupsHeaders headers) returns RAssetGroup|errorUpdate RAssetGroup
Parameters
- dataAreaId string - The company data area identifier
- depreciationGroup string - The depreciation group key field
- payload RAssetGroup - The request body
- headers UpdateRAssetGroupsHeaders (default {}) - Headers to be sent with the request
Return Type
- RAssetGroup|error - RAssetGroup updated
listRAssetLedgers
function listRAssetLedgers(map<string|string[]> headers, *ListRAssetLedgersQueries queries) returns RAssetLedgersCollection|errorList RAssetLedgers
Parameters
- queries *ListRAssetLedgersQueries - Queries to be sent with the request
Return Type
- RAssetLedgersCollection|error - Collection of RAssetLedger
createRAssetLedgers
function createRAssetLedgers(RAssetLedger payload, map<string|string[]> headers) returns RAssetLedger|errorCreate RAssetLedger
Parameters
- payload RAssetLedger - The request body
Return Type
- RAssetLedger|error - RAssetLedger created
getRAssetLedgers
function getRAssetLedgers(string dataAreaId, string postingProfile, map<string|string[]> headers, *GetRAssetLedgersQueries queries) returns RAssetLedger|errorGet RAssetLedger by key
Parameters
- dataAreaId string - The company data area identifier
- postingProfile string - The posting profile key field
- queries *GetRAssetLedgersQueries - Queries to be sent with the request
Return Type
- RAssetLedger|error - RAssetLedger
deleteRAssetLedgers
function deleteRAssetLedgers(string dataAreaId, string postingProfile, DeleteRAssetLedgersHeaders headers) returns error?Delete RAssetLedger
Parameters
- dataAreaId string - The company data area identifier
- postingProfile string - The posting profile key field
- headers DeleteRAssetLedgersHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - RAssetLedger deleted
updateRAssetLedgers
function updateRAssetLedgers(string dataAreaId, string postingProfile, RAssetLedger payload, UpdateRAssetLedgersHeaders headers) returns RAssetLedger|errorUpdate RAssetLedger
Parameters
- dataAreaId string - The company data area identifier
- postingProfile string - The posting profile key field
- payload RAssetLedger - The request body
- headers UpdateRAssetLedgersHeaders (default {}) - Headers to be sent with the request
Return Type
- RAssetLedger|error - RAssetLedger updated
listRAssetTables
function listRAssetTables(map<string|string[]> headers, *ListRAssetTablesQueries queries) returns RAssetTablesCollection|errorList RAssetTables
Parameters
- queries *ListRAssetTablesQueries - Queries to be sent with the request
Return Type
- RAssetTablesCollection|error - Collection of RAssetTable
createRAssetTables
function createRAssetTables(RAssetTable payload, map<string|string[]> headers) returns RAssetTable|errorCreate RAssetTable
Parameters
- payload RAssetTable - The request body
Return Type
- RAssetTable|error - RAssetTable created
getRAssetTables
function getRAssetTables(string dataAreaId, string fAInventoryNumber, map<string|string[]> headers, *GetRAssetTablesQueries queries) returns RAssetTable|errorGet RAssetTable by key
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- queries *GetRAssetTablesQueries - Queries to be sent with the request
Return Type
- RAssetTable|error - RAssetTable
deleteRAssetTables
function deleteRAssetTables(string dataAreaId, string fAInventoryNumber, DeleteRAssetTablesHeaders headers) returns error?Delete RAssetTable
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- headers DeleteRAssetTablesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - RAssetTable deleted
updateRAssetTables
function updateRAssetTables(string dataAreaId, string fAInventoryNumber, RAssetTable payload, UpdateRAssetTablesHeaders headers) returns RAssetTable|errorUpdate RAssetTable
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- payload RAssetTable - The request body
- headers UpdateRAssetTablesHeaders (default {}) - Headers to be sent with the request
Return Type
- RAssetTable|error - RAssetTable updated
listRAssetUses
function listRAssetUses(map<string|string[]> headers, *ListRAssetUsesQueries queries) returns RAssetUsesCollection|errorList RAssetUses
Parameters
- queries *ListRAssetUsesQueries - Queries to be sent with the request
Return Type
- RAssetUsesCollection|error - Collection of RAssetUse
createRAssetUses
Create RAssetUse
Parameters
- payload RAssetUse - The request body
getRAssetUses
function getRAssetUses(string dataAreaId, string fAInventoryNumber, string period, map<string|string[]> headers, *GetRAssetUsesQueries queries) returns RAssetUse|errorGet RAssetUse by key
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- period string - The period key field
- queries *GetRAssetUsesQueries - Queries to be sent with the request
deleteRAssetUses
function deleteRAssetUses(string dataAreaId, string fAInventoryNumber, string period, DeleteRAssetUsesHeaders headers) returns error?Delete RAssetUse
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- period string - The period key field
- headers DeleteRAssetUsesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - RAssetUse deleted
updateRAssetUses
function updateRAssetUses(string dataAreaId, string fAInventoryNumber, string period, RAssetUse payload, UpdateRAssetUsesHeaders headers) returns RAssetUse|errorUpdate RAssetUse
Parameters
- dataAreaId string - The company data area identifier
- fAInventoryNumber string - The f a inventory number key field
- period string - The period key field
- payload RAssetUse - The request body
- headers UpdateRAssetUsesHeaders (default {}) - Headers to be sent with the request
Records
microsoft.dynamics365.finance.fixedasset: AssetLending
Fields
- dateOfLease? string -
- dataAreaId? string -
- actualReturnDate? string -
- expectedReturnDate? string -
- leaseholder? string -
- fAInventoryNumber? string -
- location? string -
microsoft.dynamics365.finance.fixedasset: AssetLendingsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AssetLendingsCollectionAllOf2
- value AssetLending[]
- anydata...
microsoft.dynamics365.finance.fixedasset: AssetLendingsCollectionAllOf2
Fields
- value? AssetLending[] -
microsoft.dynamics365.finance.fixedasset: AssetSorting
Fields
- dataAreaId? string -
- description? string -
- identification? string -
- sorting? AssetSortValue -
microsoft.dynamics365.finance.fixedasset: AssetSortingsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *AssetSortingsCollectionAllOf2
- value AssetSorting[]
- anydata...
microsoft.dynamics365.finance.fixedasset: AssetSortingsCollectionAllOf2
Fields
- value? AssetSorting[] -
microsoft.dynamics365.finance.fixedasset: 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.fixedasset: DeleteAssetLendingsHeaders
Represents the Headers record for the operation: deleteAssetLendings
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteAssetSortingsHeaders
Represents the Headers record for the operation: deleteAssetSortings
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteFixedAssetsHeaders
Represents the Headers record for the operation: deleteFixedAssets
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteFixedAssetsV2Headers
Represents the Headers record for the operation: deleteFixedAssetsV2
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteFixedAssetValueModelsHeaders
Represents the Headers record for the operation: deleteFixedAssetValueModels
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteLeasingGroupsHeaders
Represents the Headers record for the operation: deleteLeasingGroups
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteParentLeasesHeaders
Represents the Headers record for the operation: deleteParentLeases
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteRAssetGroupsHeaders
Represents the Headers record for the operation: deleteRAssetGroups
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteRAssetLedgersHeaders
Represents the Headers record for the operation: deleteRAssetLedgers
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteRAssetTablesHeaders
Represents the Headers record for the operation: deleteRAssetTables
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: DeleteRAssetUsesHeaders
Represents the Headers record for the operation: deleteRAssetUses
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: FixedAsset
Fields
- fixedAssetCreditGroup? FBPISCOFINSFixedAssetCreditGroupBR -
- assetLocationId? string -
- exceptionTaxationRateDenominator? decimal -
- searchName? string -
- technicalInformation1? string -
- sortField1Description? string -
- technicalInformation2? string -
- technicalInformation3? string -
- leaseNote? string -
- insuredValue? decimal -
- agent? string -
- sortField1Sorting? AssetSortValue -
- lastPeriodicValueCostUpdate? string -
- sortField1Id? string -
- titleholder? string -
- make? string -
- documentLocation? string -
- exceptionTaxationRate? decimal -
- departmentSearchName? string -
- propertyGroupDescription? string -
- insuranceDate1? string -
- nameOfTheLender? string -
- insuranceDate2? string -
- acquisitionPrice? decimal -
- taxCreditsInstallments? Signed32 -
- fixedAssetGroupId? string -
- sortField3Sorting? AssetSortValue -
- assetConditionDescription? string -
- contactPersonnelNumber? string -
- iCMSCreditInstallments? Signed32 -
- fiscalEstablishmentId? string -
- sortField2Sorting? AssetSortValue -
- activityCodeDescription? string -
- sortField2Id? string -
- activityCode? string -
- policyNumber? string -
- reference? string -
- locationId? string -
- taxCreditPurpose? FBPISCOFINSFixedAssetCreditPurposeBR -
- insuredAtFairMarketValue? NoYes -
- acceleratedDepreciationFixedAssetEquipmentGroupId? string -
- 'type? AssetType -
- outgoingICMS? NoYes -
- model? string -
- modelYear? string -
- contactName? string -
- assetConditionId? string -
- longTermReceivableTax? NoYes -
- physicalAssetNumber? string -
- missingAsset? NoYes -
- policyAmount? decimal -
- propertyType? AssetPropertyType -
- name? string -
- dataAreaId? string -
- majorTypeDescription? string -
- taxationCodeForCOFINS? string -
- isSecondHand? NoYes -
- transferredFromInventory? NoYes -
- nextMaintenance? string -
- lastMaintenance? string -
- assetTypeOfMajorType? AssetTypeJP -
- sortField3Id? string -
- unitOfMeasure? string -
- deferredType? AssetDeferredTypeJP -
- gISReferenceNumber? string -
- 'resource? string -
- disposalRestrictions? string -
- responsiblePersonnelNumber? string -
- serialNumber? string -
- mainAssetId? string -
- propertyGroupId? string -
- assetLocationName? string -
- roomNumber? string -
- majorTypeId? string -
- parcelID? string -
- exceptionTaxationCode? string -
- fixedAssetNumber? string -
- barCode? string -
- insuranceVendor? string -
- departmentOperatingUnitNumber? string -
- isRented? NoYes -
- responsibleName? string -
- acquisitionDate? string -
- replacementCost? decimal -
- guaranteeDate? string -
- appropriationMethod? FBPISCOFINSFixedAssetAppropMethodBR -
- policyExpirationDate? string -
- sortField2Description? string -
- physicalInventory? string -
- locationMemo? string -
- information3? string -
- information2? string -
- comments? string -
- information1? string -
- quantity? decimal -
- unitCost? decimal -
- sortField3Description? string -
- taxationCodeForPIS? string -
- assetClassification? AssetClassificationJP -
- sourceTypeId? string -
microsoft.dynamics365.finance.fixedasset: FixedAssetsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *FixedAssetsCollectionAllOf2
- value FixedAsset[]
- anydata...
microsoft.dynamics365.finance.fixedasset: FixedAssetsCollectionAllOf2
Fields
- value? FixedAsset[] -
microsoft.dynamics365.finance.fixedasset: FixedAssetsV2Collection
Fields
- Fields Included from *ODataCollection
- Fields Included from *FixedAssetsV2CollectionAllOf2
- value FixedAssetV2Entity[]
- anydata...
microsoft.dynamics365.finance.fixedasset: FixedAssetsV2CollectionAllOf2
Fields
- value? FixedAssetV2Entity[] -
microsoft.dynamics365.finance.fixedasset: FixedAssetV2Entity
Fields
- physicalAssetNumber? string -
- fixedAssetCreditGroup? FBPISCOFINSFixedAssetCreditGroupBR -
- assetLocationId? string -
- exceptionTaxationRateDenominator? decimal -
- searchName? string -
- missingAsset? NoYes -
- policyAmount? decimal -
- propertyType? AssetPropertyType -
- name? string -
- dataAreaId? string -
- technicalInformation1? string -
- technicalInformation2? string -
- taxationCodeForCOFINS? string -
- technicalInformation3? string -
- isSecondHand? NoYes -
- leaseNote? string -
- transferredFromInventory? NoYes -
- insuredValue? decimal -
- nextMaintenance? string -
- lastMaintenance? string -
- assetTypeOfMajorType? AssetTypeJP -
- sortField3Id? string -
- lastPeriodicValueCostUpdate? string -
- agent? string -
- sortField1Id? string -
- titleholder? string -
- unitOfMeasure? string -
- deferredType? AssetDeferredTypeJP -
- gISReferenceNumber? string -
- 'resource? string -
- make? string -
- disposalRestrictions? string -
- responsiblePersonnelNumber? string -
- documentLocation? string -
- exceptionTaxationRate? decimal -
- serialNumber? string -
- mainAssetId? string -
- departmentSearchName? string -
- propertyGroupId? string -
- insuranceDate1? string -
- insuranceDate2? string -
- nameOfTheLender? string -
- acquisitionPrice? decimal -
- fixedAssetGroupId? string -
- taxCreditsInstallments? Signed32 -
- roomNumber? string -
- majorTypeId? string -
- parcelID? string -
- exceptionTaxationCode? string -
- contactPersonnelNumber? string -
- fixedAssetNumber? string -
- barCode? string -
- insuranceVendor? string -
- departmentOperatingUnitNumber? string -
- iCMSCreditInstallments? Signed32 -
- isRented? NoYes -
- responsibleName? string -
- acquisitionDate? string -
- replacementCost? decimal -
- guaranteeDate? string -
- appropriationMethod? FBPISCOFINSFixedAssetAppropMethodBR -
- fiscalEstablishmentId? string -
- policyExpirationDate? string -
- locationMemo? string -
- physicalInventory? string -
- sortField2Id? string -
- information3? string -
- activityCode? string -
- policyNumber? string -
- information2? string -
- comments? string -
- reference? string -
- information1? string -
- quantity? decimal -
- taxCreditPurpose? FBPISCOFINSFixedAssetCreditPurposeBR -
- insuredAtFairMarketValue? NoYes -
- unitCost? decimal -
- 'type? AssetType -
- acceleratedDepreciationFixedAssetEquipmentGroupId? string -
- taxationCodeForPIS? string -
- assetLeaseLeaseId? string -
- assetClassification? AssetClassificationJP -
- outgoingICMS? NoYes -
- model? string -
- modelYear? string -
- sourceTypeId? string -
- contactName? string -
- assetConditionId? string -
- longTermReceivableTax? NoYes -
microsoft.dynamics365.finance.fixedasset: FixedAssetValueModel
Fields
- specialDepreciationRunDate? string -
- alternativeDepreciationProfileId? string -
- acquisitionMethodDescription? string -
- reductionEntryAllocationStartDate? string -
- shortenedUsefulLife? NoYes -
- serviceLifeYears? Signed32 -
- disposalDate? string -
- reducingBalanceCheckMaximumPercent? NoYes -
- depreciationPeriods? Signed32 -
- revisedAcquisitionCost? decimal -
- dataAreaId? string -
- derogatoryTaxModel? NoYes -
- specialDepreciationAllocationStartConvention? AssetSpecialDepAllocationConventionJP -
- consumptionEstimated? decimal -
- dimensionDisplayValue? string -
- summarizeByMajorType? NoYes -
- depreciationProfileId? string -
- status? AssetStatus -
- sortField3Id? string -
- lowValuePoolTransferDate? string -
- createDepreciationAdjustmentsWithBasisAdjustments? NoYes -
- sortField1Id? string -
- consumptionFactorId? string -
- reducingBalanceStraightLineFactor? decimal -
- customerInvoice? string -
- vendorAccount? string -
- reductionEntryAllocationLastRunDate? string -
- customerAccount? string -
- reducingBalancePercentageAfterValidation? decimal -
- expectedScrapValue? decimal -
- vendorInvoice? string -
- calculateDepreciation? NoYes -
- calcAdjInRBDepreciations? NoYes -
- lowValuePoolTransferId? string -
- acquisitionPrice? decimal -
- fixedAssetGroupId? string -
- derogatoryCalculation? string -
- specialDepreciationAllocationUnit? AssetAccrualFiscal -
- consumptionUnitDepreciation? decimal -
- serviceLife? decimal -
- acquisitionMethodId? string -
- isMigratedAsset? NoYes -
- fixedAssetNumber? string -
- revaluationGroupId? string -
- postingProfileId? string -
- replacementDate? string -
- allowNegativeNetBookValue? NoYes -
- depreciationConvention? AssetDepreciationConvention -
- extraordinaryDepreciationLastRunDate? string -
- placedInService? string -
- specialDepreciationAllocationLastRunDate? string -
- acquisitionDate? string -
- provisionType? string -
- depreciationRunDate? string -
- revisedAcquisitionCostStartDate? string -
- serviceLifeMonths? Signed32 -
- allowNetBookValueHigherThanAcquisitionCosts? NoYes -
- valueModelId? string -
- allowableLimitForAccumulatedDepreciation? AssetLimitForAccumulatedDepTypeJP -
- salesValue? decimal -
- extraordinaryDepreciationProfileId? string -
- specialDepreciationAllocationPeriods? Signed32 -
- sortField2Id? string -
- depreciationPeriodsRemaining? decimal -
- allowDepreciationWhenPlacedInServiceAndDisposalAreInTheSameFiscalYear? NoYes -
- fairValue? decimal -
- acceleratedDepreciationLastRunDate? string -
- isAssetGroupDepreciation? NoYes -
- depreciationLastRunDate? string -
- acceleratedDepreciationProfileId? string -
- purchaseOrder? string -
- equallyDividedStartDate? string -
- consumptionUnitId? string -
microsoft.dynamics365.finance.fixedasset: FixedAssetValueModelsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *FixedAssetValueModelsCollectionAllOf2
- value FixedAssetValueModel[]
- anydata...
microsoft.dynamics365.finance.fixedasset: FixedAssetValueModelsCollectionAllOf2
Fields
- value? FixedAssetValueModel[] -
microsoft.dynamics365.finance.fixedasset: GetAssetLendingsQueries
Represents the Queries record for the operation: getAssetLendings
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.fixedasset: GetAssetSortingsQueries
Represents the Queries record for the operation: getAssetSortings
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.fixedasset: GetFixedAssetsQueries
Represents the Queries record for the operation: getFixedAssets
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.fixedasset: GetFixedAssetsV2Queries
Represents the Queries record for the operation: getFixedAssetsV2
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.fixedasset: GetFixedAssetValueModelsQueries
Represents the Queries record for the operation: getFixedAssetValueModels
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.fixedasset: GetLeasingGroupsQueries
Represents the Queries record for the operation: getLeasingGroups
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.fixedasset: GetParentLeasesQueries
Represents the Queries record for the operation: getParentLeases
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.fixedasset: GetRAssetGroupsQueries
Represents the Queries record for the operation: getRAssetGroups
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.fixedasset: GetRAssetLedgersQueries
Represents the Queries record for the operation: getRAssetLedgers
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.fixedasset: GetRAssetTablesQueries
Represents the Queries record for the operation: getRAssetTables
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.fixedasset: GetRAssetUsesQueries
Represents the Queries record for the operation: getRAssetUses
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.fixedasset: LeasingGroup
Fields
- dataAreaId? string -
- company? string -
- description? string -
- leaseGroup? string -
microsoft.dynamics365.finance.fixedasset: LeasingGroupsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *LeasingGroupsCollectionAllOf2
- value LeasingGroup[]
- anydata...
microsoft.dynamics365.finance.fixedasset: LeasingGroupsCollectionAllOf2
Fields
- value? LeasingGroup[] -
microsoft.dynamics365.finance.fixedasset: ListAssetLendingsQueries
Represents the Queries record for the operation: listAssetLendings
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.fixedasset: ListAssetSortingsQueries
Represents the Queries record for the operation: listAssetSortings
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.fixedasset: ListFixedAssetsQueries
Represents the Queries record for the operation: listFixedAssets
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.fixedasset: ListFixedAssetsV2Queries
Represents the Queries record for the operation: listFixedAssetsV2
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.fixedasset: ListFixedAssetValueModelsQueries
Represents the Queries record for the operation: listFixedAssetValueModels
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.fixedasset: ListLeasingGroupsQueries
Represents the Queries record for the operation: listLeasingGroups
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.fixedasset: ListParentLeasesQueries
Represents the Queries record for the operation: listParentLeases
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.fixedasset: ListRAssetGroupsQueries
Represents the Queries record for the operation: listRAssetGroups
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.fixedasset: ListRAssetLedgersQueries
Represents the Queries record for the operation: listRAssetLedgers
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.fixedasset: ListRAssetTablesQueries
Represents the Queries record for the operation: listRAssetTables
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.fixedasset: ListRAssetUsesQueries
Represents the Queries record for the operation: listRAssetUses
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.fixedasset: 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.fixedasset: ODataCollection
Fields
- odataNextLink? string -
- odataCount? int -
- odataContext? string -
microsoft.dynamics365.finance.fixedasset: ParentLease
Fields
- company? string -
- bankContractNumber? string -
- dimensionDefaultDisplayValue? string -
- latePayment? decimal -
- borrowingRate? decimal -
- deliveryDate? string -
- deferredRentCarryover? decimal -
- percentOfIndexChangeToApply? decimal -
- manuallyRevalue? NoYes -
- dataAreaId? string -
- commencementDate? string -
- costPerMile? decimal -
- countryRegionID? string -
- annuityType? AssetLeaseAnnuityType -
- currency? string -
- indexRateType? string -
- street? string -
- leaseStartDate? string -
- leaseDescription? string -
- leaseIncentives? decimal -
- holdoverFee? decimal -
- unitOfMeasure? string -
- fairValueOfAsset? decimal -
- securityDepositReminderDate? string -
- implicitRate? decimal -
- limitOnRateIncrease? decimal -
- locationOpeningDate? string -
- vendorAccount? string -
- city? string -
- uniqueAsset? NoYes -
- minimunLimitsOfLiability? decimal -
- indexChangeToApply? decimal -
- taxGroup? string -
- state? string -
- taxItemGroup? string -
- rentableArea? decimal -
- exchangeRate? decimal -
- financialCommercialTerms? string -
- allowDecreases? NoYes -
- fixedExchangeRate? NoYes -
- leasePrepayments? decimal -
- fixedAssetNumber? string -
- leaseId? string -
- breakdownPaymentAmount? NoYes -
- fixedExchangeRateReporting? NoYes -
- county? string -
- overuseFee? decimal -
- securityDepositRefundable? NoYes -
- mileageLimit? decimal -
- monthsBetweenRevaluations? Signed32 -
- locationNumber? string -
- maxCoverage? decimal -
- residualValueGuarantee? decimal -
- securityDeposit? decimal -
- revaluationDate? string -
- initialDirectCost? decimal -
- transferOwnership? NoYesCombo -
- leaseGroup? string -
- zipCode? string -
- currentMileage? decimal -
- incidentalCost? decimal -
- contractSignatureDate? string -
- compoundingInterval? AssetLeaseCompoundingInterval -
- expirationDate? string -
- assetUsefulLife? Signed32 -
- dismantlingCosts? decimal -
- percentCommonAreaMaintenance? decimal -
- financingAmount? Signed32 -
- indexRate? decimal -
- exchangeRateReporting? decimal -
microsoft.dynamics365.finance.fixedasset: ParentLeasesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *ParentLeasesCollectionAllOf2
- value ParentLease[]
- anydata...
microsoft.dynamics365.finance.fixedasset: ParentLeasesCollectionAllOf2
Fields
- value? ParentLease[] -
microsoft.dynamics365.finance.fixedasset: RAssetGroup
Fields
- dataAreaId? string -
- depreciationMethod? string -
- depreciationBonus? decimal -
- lifetime? Signed32 -
- valueModel? string -
- depreciationGroup? string -
- depreciationStartDate? RAssetInitDepStartDate -
- yearRate? decimal -
- name? string -
- minimalDepreciation? decimal -
microsoft.dynamics365.finance.fixedasset: RAssetGroupsCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *RAssetGroupsCollectionAllOf2
- value RAssetGroup[]
- anydata...
microsoft.dynamics365.finance.fixedasset: RAssetGroupsCollectionAllOf2
Fields
- value? RAssetGroup[] -
microsoft.dynamics365.finance.fixedasset: RAssetLedger
Fields
- dataAreaId? string -
- postingProfile? string -
- description? string -
microsoft.dynamics365.finance.fixedasset: RAssetLedgersCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *RAssetLedgersCollectionAllOf2
- value RAssetLedger[]
- anydata...
microsoft.dynamics365.finance.fixedasset: RAssetLedgersCollectionAllOf2
Fields
- value? RAssetLedger[] -
microsoft.dynamics365.finance.fixedasset: RAssetTable
Fields
- transportTaxCode? string -
- deduction? string -
- ownedShareDenominator? Signed32 -
- typeOfRate? string -
- unit? string -
- assetUse? decimal -
- name? string -
- insurancePolicyNumber? string -
- dataAreaId? string -
- outputYear? Signed32 -
- manufacturer? string -
- dateOfTheRegistration? string -
- increasingFactorGroup? string -
- groundAreaCategory? string -
- 'resource? string -
- vendorAccount? string -
- logisticsPostalAddressFKValidFrom? string -
- customerAccount? string -
- taxDeductionAmount? decimal -
- ownedShareNumerator? Signed32 -
- taxBase? decimal -
- documentLocation? string -
- vehicleModel? string -
- serialNumber? string -
- insuranceAmount? decimal -
- acquisitionCost? decimal -
- barcode? string -
- note? string -
- insuranceDate1? string -
- passportNumber? string -
- insuranceDate2? string -
- startDateOfBuilding? string -
- flagOfOwnership? RAssetBelonged -
- mainAsset? string -
- removalFromTheRegisterDate? string -
- traceableNumber? string -
- landCadastralNumber? string -
- landTaxCode? string -
- assessedTaxCode? string -
- emissionClass? RAssetVehicleEcoClass -
- acquisitionDate? string -
- replacementCost? decimal -
- nontaxable? NoYes -
- assetKind? RAssetAssessedTaxType -
- guaranteeDate? string -
- vATRefunding? RAssetVatRefundingStartDate -
- vehicleRegistrationNumber? string -
- vehicleType? string -
- fAInventoryNumber? string -
- assetType? RAssetType -
- roomCadastralNumber? string -
- model? string -
- fAGroup? string -
- privilege? string -
- location? string -
microsoft.dynamics365.finance.fixedasset: RAssetTablesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *RAssetTablesCollectionAllOf2
- value RAssetTable[]
- anydata...
microsoft.dynamics365.finance.fixedasset: RAssetTablesCollectionAllOf2
Fields
- value? RAssetTable[] -
microsoft.dynamics365.finance.fixedasset: RAssetUse
Fields
- dataAreaId? string -
- outputMileage? decimal -
- fAInventoryNumber? string -
- period? string -
- outputRunExport? decimal -
- outputRunNontaxable? decimal -
microsoft.dynamics365.finance.fixedasset: RAssetUsesCollection
Fields
- Fields Included from *ODataCollection
- Fields Included from *RAssetUsesCollectionAllOf2
- value RAssetUse[]
- anydata...
microsoft.dynamics365.finance.fixedasset: RAssetUsesCollectionAllOf2
Fields
- value? RAssetUse[] -
microsoft.dynamics365.finance.fixedasset: UpdateAssetLendingsHeaders
Represents the Headers record for the operation: updateAssetLendings
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateAssetSortingsHeaders
Represents the Headers record for the operation: updateAssetSortings
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateFixedAssetsHeaders
Represents the Headers record for the operation: updateFixedAssets
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateFixedAssetsV2Headers
Represents the Headers record for the operation: updateFixedAssetsV2
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateFixedAssetValueModelsHeaders
Represents the Headers record for the operation: updateFixedAssetValueModels
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateLeasingGroupsHeaders
Represents the Headers record for the operation: updateLeasingGroups
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateParentLeasesHeaders
Represents the Headers record for the operation: updateParentLeases
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateRAssetGroupsHeaders
Represents the Headers record for the operation: updateRAssetGroups
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateRAssetLedgersHeaders
Represents the Headers record for the operation: updateRAssetLedgers
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateRAssetTablesHeaders
Represents the Headers record for the operation: updateRAssetTables
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
microsoft.dynamics365.finance.fixedasset: UpdateRAssetUsesHeaders
Represents the Headers record for the operation: updateRAssetUses
Fields
- ifMatch? string - ETag value for optimistic concurrency; prevents overwriting concurrent modifications
Union types
microsoft.dynamics365.finance.fixedasset: RAssetVatRefundingStartDate
RAssetVatRefundingStartDate
microsoft.dynamics365.finance.fixedasset: AssetSortValue
AssetSortValue
microsoft.dynamics365.finance.fixedasset: RAssetType
RAssetType
microsoft.dynamics365.finance.fixedasset: RAssetAssessedTaxType
RAssetAssessedTaxType
microsoft.dynamics365.finance.fixedasset: AssetSpecialDepAllocationConventionJP
AssetSpecialDepAllocationConventionJP
microsoft.dynamics365.finance.fixedasset: AssetDeferredTypeJP
AssetDeferredTypeJP
microsoft.dynamics365.finance.fixedasset: AssetClassificationJP
AssetClassificationJP
microsoft.dynamics365.finance.fixedasset: RAssetVehicleEcoClass
RAssetVehicleEcoClass
microsoft.dynamics365.finance.fixedasset: FBPISCOFINSFixedAssetCreditGroupBR
FBPISCOFINSFixedAssetCreditGroupBR
microsoft.dynamics365.finance.fixedasset: RAssetBelonged
RAssetBelonged
microsoft.dynamics365.finance.fixedasset: AssetStatus
AssetStatus
microsoft.dynamics365.finance.fixedasset: AssetPropertyType
AssetPropertyType
microsoft.dynamics365.finance.fixedasset: AssetDepreciationConvention
AssetDepreciationConvention
microsoft.dynamics365.finance.fixedasset: AssetLimitForAccumulatedDepTypeJP
AssetLimitForAccumulatedDepTypeJP
microsoft.dynamics365.finance.fixedasset: RAssetInitDepStartDate
RAssetInitDepStartDate
microsoft.dynamics365.finance.fixedasset: AssetAccrualFiscal
AssetAccrualFiscal
microsoft.dynamics365.finance.fixedasset: AssetLeaseCompoundingInterval
AssetLeaseCompoundingInterval
microsoft.dynamics365.finance.fixedasset: FBPISCOFINSFixedAssetAppropMethodBR
FBPISCOFINSFixedAssetAppropMethodBR
microsoft.dynamics365.finance.fixedasset: AssetType
AssetType
microsoft.dynamics365.finance.fixedasset: AssetTypeJP
AssetTypeJP
microsoft.dynamics365.finance.fixedasset: FBPISCOFINSFixedAssetCreditPurposeBR
FBPISCOFINSFixedAssetCreditPurposeBR
microsoft.dynamics365.finance.fixedasset: AssetLeaseAnnuityType
AssetLeaseAnnuityType
microsoft.dynamics365.finance.fixedasset: NoYes
NoYes
microsoft.dynamics365.finance.fixedasset: NoYesCombo
NoYesCombo
Import
import ballerinax/microsoft.dynamics365.finance.fixedasset;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 Fixed Asset
Area/Finance & Accounting
Vendor/Microsoft
Dynamics365
Finance
ERP
Type/Connector
FixedAsset
RAsset
Asset
Lease
Contributors