when i am trying to create sponsored brand campaign i am getting error
[
{
"code": "INVALID_ARGUMENT",
"description": "No keywords were successfully created",
"errors": [
{
"KeywordError": {
"message": "No keywords were successfully created",
"reason": "KEYWORD_CREATION_FAILURE"
}
}
]
}
]
here is the requested payload which i am submitting. All the provided detail is accurate may be i am missing some keys to add in it but amazon is not returning any error like that just saying "No keywords were successfully created" with code of "INVALID_ARGUMENT".
[
{
"name": "new-campaign",
"budget": 200000,
"budgetType": "daily",
"startDate": "20220423",
"adFormat": "productCollection",
"brandEntityId": "string",
"bidOptimization": true,
"creative": {
"brandName": "string",
"brandLogoAssetID": "string",
"headline": "new text campaign",
"asins": [
"string",
"string"
]
},
"landingPage": {
"asins": [
"string",
"string",
"string"
]
},
"keywords": [
{
"keywordText": "new keyword",
"nativeLanguageKeyword": "new keyword",
"nativeLanguageLocale": "en_GB",
"matchType": "broad",
"bid": 2000
}
]
}
]
It looks like an issue with the format of the keyword. If you are trying to create an English keyword, try removing nativeLanguageKeyword and nativeLanguageLocale. Those fields should only be relevant if you are creating a Chinese or British English keyword.