Get calibration by id
1 分
GET
https://api.app.kognic.com/v2/calibrations/{id}
idstring<uuid>The uuid of the calibration
acceptstringGenerated from available response content types
200
400Bad request
401Unauthorized
403Forbidden
404Not found
import requests
import json
url = "https://api.app.kognic.com/v2/calibrations/{id}"
payload = {}
headers = {
'accept': 'application/json',
'content-type': 'application/json'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)