I have created a campaign using below code.
fields = []
params = {
'name': 'My campaign',
'objective': 'LINK_CLICKS',
'status': 'PAUSED',
}
AdAccount(id).create_campaign(
fields=fields,
params=params,
)
when I try to get campaigns by using below code,
my_account = AdAccount('act_xxxxxxxxx')
campaigns = my_account.get_campaigns()
I'm getting only campaign ID's.
How to know the name of the campaign ID?