{
"productAds": [
{
"campaignId": "{{campaignId}}",
"state": "ENABLED",
"asin": "B087TKYT4X",
"adGroupId": "{{adGroupId}}"
}
]
}
curl --location --request POST 'https://www.amazon.com/ap/oa/sp/productAds' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Prefer: return=representation' \
--header 'Accept: application/vnd.spProductAd.v3+json' \
--header 'Content-Type: application/vnd.spProductAd.v3+json' \
--data-raw '{
"productAds": [
{
"campaignId": "{{campaignId}}",
"state": "ENABLED",
"asin": "B087TKYT4X",
"adGroupId": "{{adGroupId}}"
}
]
}'
{
"productAds": {
"error": [],
"success": [
{
"adId": "237832642498121",
"index": 0,
"productAd": {
"adGroupId": "140531465119624",
"adId": "237832642498121",
"asin": "B0986YK83J",
"campaignId": "26256301417055",
"extendedData": {
"creationDate": 1660231296423,
"lastUpdateDate": 1660231296423
},
"sku": "a140aafa-1a23",
"state": "ENABLED"
}
}
]
}
}