skip to Main Content

Azure – Get extended property Microsoft graph mailFolders

This is maybe a very dumb question but I am trying to create a hidden folder with multiValueExtendedProperties. If I´m creating the folder like this: POST https://graph.microsoft.com/v1.0/me/mailFolders { "displayName": "Test", "isHidden": "true", "multiValueExtendedProperties": [ { "id": "StringArray {66f5a359-4659-4830-9070-00050ec6ac6e} Name Recreation",…

VIEW QUESTION

Json – Powershell: Using Invoke-WebRequest with variables

I am currently having a problem with a script to send fuel transactions through an api. It works without variables: $headers=@{} $headers.Add("accept", "application/json") $headers.Add("content-type", "application/json") $headers.Add("authorization", "$APIToken") $response = Invoke-WebRequest -Uri 'https://api.samsara.com/fuel-purchase' -Method POST -Headers $headers -ContentType 'application/json' -Body '{"fuelQuantityLiters":"676.8","iftaFuelType":"Diesel","transactionLocation":"350…

VIEW QUESTION
Back To Top
Search