top of page
Use PowerShell to Push Data to a Swagger API
Originally posted to du5tin.com on August 6, 2020. We went over how to get authenticated using PowerShell and OAuth 2.0 in a previous article . It might be required to do that first! In this scenario we are loading up SCADA data from CSV files on disk and then pushing the data to the remote API service. Here is the full code: # Load the CSV Files $rawData = import-csv "data.csv" # Setup all the info for the subsequent API requests $url = "http://api_url_here/api" # Build up
Dustin Symes
Dec 19, 20252 min read
Â
Â
bottom of page




