Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 3 Current »

headerFTU.jpg

Get the Token ( or vsts)

get a list

Partner

SWAGGER

image-20241019-032726.png

image-20241019-032646.png

POSTMAN

Python Script

Hardware

Python Script

import requests
import json

url = "https://sdwan-dir.pres3-preprod.ekinops.io:8443/rest/json/v1.0/hardware_model"

payload = {}
headers = {
  'vsts': 'F29YrNN95yhSOsF1Pc6pAPfCNlsIcX8T'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

# Parse the JSON string
data = json.loads(response.text)

# Print the JSON data in a pretty, multiline format
print(json.dumps(data, indent=4))

Create

partner

harware

  • No labels