Created
July 3, 2023 11:40
-
-
Save FH-Inway/71d6637fd159077cb2acece1b9956737 to your computer and use it in GitHub Desktop.
Download D365FO OData specification
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $MetaDataUrl = 'https://<YourSiteURL>/data/$metadata' | |
| $Outfile = 'C:\Temp\d365fo-odata.edmx' | |
| If (!$Cred){ $Cred = Get-Credential} | |
| Write-Output "Downloading OData specification..." | |
| Invoke-WebRequest -Credential $Cred -Uri $MetaDataUrl -OutFile $Outfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment