Hi there,
I'm using the Adwords API, following your official guide I could manage to create new labels for my adwords account using the LableService.
However, these new labels are assigned an "internal" lable_id which I would like to have control of, since I'm creating the same labels for multiple accounts.
I would like to know if is it possible to assign an ID to a label when creating it.
Here's a snippet of the python code i'm using to create new labels in case you need it:
label_service = client.GetService('LabelService', version='v201809')
operations = [
{
"xsi_type": "LabelOperation",
"operator": "ADD",
"operand": {
"xsi_type": "TextLabel",
"name": 'Test Label'
}
}
]
result = label_service.mutate(operations)
Thanks in advance,
Best Regards,