Parameters/get_parameters

get_parameterstoken required

Stub action — currently always returns action_value '999' (not_implemented).

POST/api— body field action.name = "get_parameters"

Parameters

This action takes no parameters.

Notes

Handler is a placeholder: returns `{ data: [], action_value: '999', description: 'not_implemented' }`. No parameters are read.

Request

curl
curl -X POST 'https://api.develop-1.questar.io/v2/exodus/api' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  --data '{"action":{"name":"get_parameters","parameters":[]}}'
Body
{
  "action": {
    "name": "get_parameters",
    "parameters": []
  }
}

Response

Successful responses always wrap the action's payload in response.properties. The action_value field reports the handler outcome: "0" for success, "1" for invalid params, "2" for not allowed, "999" for general error.

200 OK
{
  "response": {
    "properties": {
      "action_name": "get_parameters",
      "action_value": "0",
      "description": "success",
      "data": [
        {}
      ]
    }
  }
}