# List Technology Target Values Get list of technology target values Endpoint: GET /technology_target_values Version: xx.xx.xx Security: Auth0 ## Query parameters: - `name` (string) Case insensitive name contains search - `full_path` (string) Case insensitive full_path contains search - `dimension_code` (string, required) Comma separated list of dimension codes - `sort_by` (string) field to sort by (ascending default, prepend '-' for descending) - `q` (string) common query searching and pattern matching for fields ## Response 200 fields (application/json): - `data` (array,null) - `data.id` (number) - `data.dimension` (string) - `data.name` (string) - `data.full_path` (string) - `data.value` (number) - `data.code` (string) - `meta` (object) - `meta.status` (string, required) The status of the response, indicating success or failure. Example: "success" - `meta.count` (integer, required) The number of items returned in the current response. Example: 10 - `meta.total_count` (integer) The total number of items available in the dataset. Example: 100 - `meta.offset` (integer) The offset from the start of the dataset, used for pagination. - `meta.next_page` (string) The URL to fetch the next page of results. - `meta.prev_page` (string) The URL to fetch the previous page of results. ## Response 400 fields (application/json): - `errors` (array, required) - `errors.code` (string) - `errors.field` (string) Optional when it is a schema error - `errors.message` (string) - `meta` (object, required) - `meta.status` (string, required) ## Response 401 fields (application/json): - `errors` (array, required) - `errors.code` (string) - `errors.field` (string) Optional when it is a schema error - `errors.message` (string) - `meta` (object, required) - `meta.status` (string, required) ## Response 403 fields (application/json): - `errors` (array, required) - `errors.code` (string) - `errors.field` (string) Optional when it is a schema error - `errors.message` (string) - `meta` (object, required) - `meta.status` (string, required)