Hyperwisor API Documentation
Endpoint
- API: https://www.hyperwisor.com/_functions/getschema?apikey=9MZ2UWUmiCHItyi
- Method: GET
Description
This API is used to retrieve product schema information from the Hyperwisor platform. The response is based on the schemas provided during the product schema setup process on the product development dashboard.
Request Parameters
- apikey: A unique API key for authentication.
Response Format
The API returns a JSON object with the following structure:
Response Structure
- results: An object containing the schema information.
- ch1 to ch12: Channel values.
- HIGH_VALUE: High value setting.
- LOW_VALUE: Low value setting.
- delay: Delay setting.
Usage
To use this API, make a GET request to the provided endpoint with the valid API key. The response will contain the product schema information based on the setup in the Hyperwisor product development dashboard.
Example
```javascript
fetch('https://www.hyperwisor.com/_functions/getschema?apikey=9MZ2UWUmiCHItyi')
.then(response => response.json())
.then(data => console.log(data));
```