If you want to do that with your credential, try the powershell command Get-AzureRmDisk
below.
Note: If your account needs multi-factor authentication, you could not use this way.
$Credential = Get-Credential
Connect-AzureRmAccount -Credential $Credential -TenantId "<TenantId>"
Get-AzureRmDisk -ResourceGroupName "<ResourceGroupName>" -DiskName "<DiskName>"
If you want to call the api in the postman, Eg. get all the details of a managed disk, you could navigate to this link Disks - Get, click the Try It
button, log in and copy the Authorization
token. Then go to postman, follow the doc to specify the parameters what the api need and the Authorization
token, then you will be able to call the api.
Smaple:
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}?api-version=2018-06-01
