I want get all regions for a country from my Google Analytics account. I wrote the below code to get all regions:
$metrics = 'ga:visits';
$dimensions = 'ga:country=$iso,ga:region,ga:regionId';
$ga = $this->getGa();
$gaResponse = $ga->data_ga->get('ga:122752178', $start, $end, $metrics, ['dimensions' => $dimensions]);
$resultset = $gaResponse->getRows();
So, how i can get all regions for a country ? For example, Argentina (AR).