Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "After you press Sign In, you should see that your script executed without errors and access token keeps in the $Token
variable."
A block of code is set as follows:
$response = Invoke-WebRequest `
-Method Get `
-Uri https://api.businesscentral.dynamics.com/admin/v2.11/applications/environments `
-Headers @{Authorization=("Bearer $Token")}
Write-Host (ConvertTo-Json (ConvertFrom-Json $response.Content))
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "Now, we need to provide permissions to your app registration. Click on the API permissions tab and then select + Add a permission."
Tips or Important Notes
Appear like this.