I succeeded with Postman using the below body.(RAW/JSON)
{
"date": ["20200907", "20200907"],
"select": [{
"store_id": "a1129s101",
"factor": [],
"image": [],
"file":["a1129/s101/facc.csv"]
}]
}
But failed when using the below one with "Invoke-WebRequest" command.
$body = @"
{
"date": ["20200907", "20200907"],
"select": [{
"store_id": "a1129s101",
"factor": [],
"image": [],
"file":["a1129/s101/facc.csv"]
}]
}
"@
Does anyone know how I can solve this problem?