Hi,
I'm in the process of migrating the DSA feed to the asset-based model and I have a couple of problems.
First, Page Feed normally had some attributes you could read and write (Page URL, Status, Updated etc). You don't provide those when creating an asset set, but some get automatically generated (Page URL, Custom Label and Status).
1. Can I programatically create my own attributes?
2. Can I read the attributes via api? The below query contains (from my understanding) all the available queryalbe fields on the asset_set report:
SELECT
asset_set.id,
asset_set.merchant_center_feed.feed_label,
asset_set.merchant_center_feed.merchant_id,
asset_set.name,
asset_set.resource_name,
asset_set.status,
asset_set.type
FROM asset_set
The problem is, the results are a little poor. Not only can't I get the custom attributes, but also i.e the ID is never returned (I understand that I can read the ID from the resource name field, but the ID is there and isn't even returned)
In summary, I'd like to:
1. Create my own attributes on Asset Set
2. Read those attributes either via Mutation response object on creation, and/or when using GAQL query
3. Retrieve more fields from the GAQL query (i.e. ID)
Thanks a lot in advance for your help!
Pawel