Skyline v3 Background Color Recommendations

Initiate background color recommendation generation. May take up to 30 seconds.

📘

URL: POST /api/v1/creatives/colors/background/recommendations

Request Parameters

ParameterDescriptionTypeRequiredPossible Values
advertiserIdThe ID of the specific advertiser.integerYA valid advertiser ID
assetIdsList of asset IDs to analyze for color recommendations. Recommendations are generated for the combination of assetIds specified.array (UUID)YArray of valid asset IDs

Sample Request

curl -X POST \ 'https://developer.api.us.stg.walmart.com/api-proxy/service/display/api/v1/api/v1/creatives/colors/background/recommendations' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <auth_token>' \ --header 'WM_SEC.AUTH_SIGNATURE: **************' \ --header 'WM_SEC.KEY_VERSION: 1' \ --header 'WM_CONSUMER.ID: adfwe-v00-faasd2r-afs-asdfqeff' \ --header 'WM_CONSUMER.INTIMESTAMP: 1565309779' \ --data '{ "advertiserId": 12345678, "assetIds": ["123e4567-e89b-12d3-a456-426614174000", "987e6543-e21b-45d3-a123-456789abcdef"] }'

Response

ElementDescriptionType
recommendationIdUnique identifier for the background color recommendation job.string (UUID)
statusStatus of the recommendation job.string

Sample Response

[ { "recommendationId": "123abc456-a00b-123a-a456-1234567890", "status": "PENDING" }
]