### URA GET Method Example Source: https://docs.relion.cloud/docs/zusatzmodule/schnittstellen/ura/request-aufbau An example of a GET request to check the availability of the Universal REST API. This request does not require a tenant ID in the URL and returns an XML file listing all active APIs. ```http http://MeinServer:14048/MeinServiceTier/api/aareon/universalapi/v1.0/$metadata ``` -------------------------------- ### RELion ONE Release Candidate Install Link Source: https://docs.relion.cloud/docs/microsoft-cloud/installation/release-candidate This is a specific example of a Preview Install Link for the RELion ONE Release Candidate app. Ensure your Tenant ID is correctly inserted. ```URL https://businesscentral.dynamics.com//?noSignUpCheck=1&filter='ID' IS '4f2d5834-ba23-42e2-9a87-fab031ad70c6' AND 'PreviewKey' IS 'reliononereleasecandidate'&page=2503 ``` -------------------------------- ### Start RELion Core Application Data Upgrade Source: https://docs.relion.cloud/docs/entwicklung-und-installation/update-installation Execute this command to start the data upgrade process for the RELion Core Application. ```PowerShell Start-NAVAppDataUpgrade -Name "RELion Core Application" -Version ``` -------------------------------- ### Start RELion System Application Data Upgrade Source: https://docs.relion.cloud/docs/entwicklung-und-installation/update-installation Execute this command to start the data upgrade process for the RELion System Application. ```PowerShell Start-NAVAppDataUpgrade -Name "RELion System Application" -Version ``` -------------------------------- ### Read Table Information Source: https://docs.relion.cloud/docs/zusatzmodule/schnittstellen/ura/universalrestapi-examples This example shows how to retrieve information about system tables, specifically focusing on tables like 'AllObjWithCaption' which contains metadata about Business Central objects. It requests object IDs and names. ```json { "tableNo": "2000000058", "operation": "READ", "runTrigger": true, "setupCode": "", "entitySet": [ { "fieldNo": "1", "filter": true, "value": "1" }, { "subOperation": "DONE", "responseFields": "3|4" } ] } ```