obtener-setup
Retrieve setup details from Chop's Setup system using a REST API by specifying the setup_id. Essential for accessing and managing configuration data efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
setup_id | Yes | El id del setup a obtener |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"setup_id": {
"description": "El id del setup a obtener",
"type": "number"
}
},
"required": [
"setup_id"
],
"type": "object"
}