Hi I created Callout using following Code
$asset = new Asset([ 'name' => $data->callout_name, 'type' => AssetType::CALLOUT, 'callout_asset' => new CalloutAsset(['callout_text' => $data-> callout_text]) ]); // Creates an asset operation. $assetOperation = new AssetOperation(); $assetOperation->setCreate($asset); // Issues a mutate request to add the asset. $assetServiceClient = $googleAdsClient->getAssetServiceClient(); $response = $assetServiceClient->mutateAssets( $accountId, [$assetOperation] ); But when i try to get CallOut from following code it showing Null $callOutQuery = "SELECT asset.callout_asset.callout_text FROM asset"; $stream = $googleAdsServiceClient->searchStream($accountId, $callOutQuery); foreach ($stream->iterateAllElements() as $googleAdsRow) { $newCompete = new \StdClass(); $newCompete->callout_asset_text = $googleAdsRow->getAsset()-> getCallOutAsset()->getCallOutText(); array_push($callOutText, $newCompete); } Any idea why? I created CallOUT and it dont show any error, is this CallOut Asset is Accounts Level ? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/421061e1-de46-4b28-aec5-0b7951f4de0fn%40googlegroups.com.