Get list of constants
  • 17 Jan 2024
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

Get list of constants

  • Dark
    Light
  • PDF

Article summary

Get
/txt_constants/groupname/{groupname}/

Operation is used to get a list of some constants.

Security
API Key
Header parameter nameAuthorization

Token issued for API consumer.

Path parameters
groupname
stringRequired

Groupname to fetch

Responses
200

list of constants

[
  {
    "groupname": "LOCATION_ACCURACY",
    "id": 8301,
    "logical_txt": "2.0m",
    "txt": "2.0m"
  },
  {
    "groupname": "LOCATION_ACCURACY",
    "id": 7981,
    "logical_txt": "1.0m",
    "txt": "1.0m"
  },
  {
    "groupname": "LOCATION_ACCURACY",
    "id": 8001,
    "logical_txt": "0.2m",
    "txt": "0.2m"
  }
]
Array of object
object
groupname
string

Group name of constant. Same as groupname parameter.

id
integer

Unique id of constant

logical_txt
string

Logical textual value

txt
string

Human readable textual representation (translated)

401

Authentication credentials are missing or invalid

{
  "details": "Authentication credentials were not provided"
}
object
details
string

Detailed description of error


Was this article helpful?