GET
/
temperature_range
/
:id
Get temperature_range by ID
curl --request GET \
  --url http://localhost:8080/temperature_range/:id \
  --header 'x-api-key: <api-key>'
{
  "min_temp": 123,
  "max_temp": 123
}

Authorizations

x-api-key
string
header
required

API key for authentication. Contact your administrator to get an API key.

Path Parameters

id
string
required

Temperature_range ID

Response

Successfully retrieved temperature_range

The response is of type object.