Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
firstline1
linenumberstrue
$token = "Yourtoken"
$features = Invoke-RestMethod "http://ls-feature-1.int.x-formation.comyourdomain/api/report/feature/json" -Headers @{"X-Auth-token"="$($token)"}

for ($i=0; $i -lt $features.data.fid.Length; $i++) { 
????Invoke-RestMethod "http://ls-feature-1.int.x-formation.comyourdomain/api/report/user-history/$($features.data.fid[$i])/pdf?ssd=20..." -Headers @{"X-Auth-token"="$($token)"} -OutFile "UserHistory-$($features.data.fid[$i])-2016-02-03,2016-02-10.pdf"
}

...