A call on api returns this json:
[ { "RESULT": { "TYPES": [ "bigint", "varchar", "varchar", "varchar", "varchar", "varchar", "date", "varchar", "int", "int", "varchar" ], "HEADER": [ "kvk", "bedrijfsnaam", "adres", "postcode", "plaats", "type", "anbi", "status", "kvks", "sub", "website" ], "ROWS": [ [ "273121520000", "Kinkrsoftware", <-- this is the value i want "Oude Trambaan 7", "2265CA", "Leidschendam", "Hoofdvestiging", null, null, "27312152", "0", null ] ] } } ]
I can not change the api code.
I am using Angular and I do not see to access the values.
This is my controller:
.controller('MainCtrl', function($scope, $http, $log, kvkInfo) { kvkInfo.success(function(status, data) { $scope.name = status; $scope.bedrijf = data; $scope.status = status; }); });
I tried
data.RESULT.ROW, data.RESULT.ROW [1], data.RESULT [0] .ROW, data.RESULT [0] .ROW [1], data.ROW [1]
How can I get this item?