GET smartwords

GET /smartwords

This endpoint returns as an array all smartword (custom_data) entries previously created or updated within the exercise space. Each entry consists of a text-based index and its corresponding value.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

No query parameters

Response

[
  {
    "index": "weather_condition",
    "value": "Heavy rain"
  },
  {
    "index": "fuel_supply",
    "value": "Low"
  },
  {
    "index": "public_alert_level",
    "value": "Amber"
  }
]

Last updated

Was this helpful?