How can I get the brand name by brandId? #269
xiaozhong1995
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I am using an open platform API for SD advertising placement management, and I have used /sd/targets/extended to query the target list. But one of the data is as follows:
[
{
"adGroupId": "450653783145988",
"bid": 2.97,
"campaignId": "470603979063959",
"creationDate": 1713253931560,
"expression": [
{
"type": "purchases",
"value": [
{
"type": "asinCategorySameAs",
"value": "12097478011"
},
{
"type": "asinBrandSameAs",
"value": "2529692011"
},
{
"type": "lookback",
"value": "30"
},
{
"type": "asinReviewRatingBetween",
"value": "1-3"
},
{
"type": "asinIsPrimeShippingEligible",
"value": "true"
},
{
"type": "asinPriceBetween",
"value": "2-3"
}
]
}
],
"expressionType": "manual",
"lastUpdatedDate": 1713255725872,
"resolvedExpression": [
{
"type": "purchases",
"value": "category="12097478011" brand="2529692011" lookback=30 rating=1-3 prime-shipping-eligible="true" price=2-3"
}
],
"servingStatus": "CAMPAIGN_PAUSED",
"state": "paused",
"targetId": "410557364253776"
}
]
The value of resolvedExpression is inconsistent with the API definition, and both category and brand are returned IDs. The method I am thinking of now is to use the ID in the expression to query category name and brand name.
But it seems that there is no interface for querying brand names through brand IDs,Is there any other method?
Beta Was this translation helpful? Give feedback.
All reactions