Get Creative by External ID

Example of using the "Get Creatives" RESTful endpoint with a query param

Returns a Creative found by its externalCreativeId.

Request

GET /v1/creative?externalCreativeId=test123

Note that the request string should be URL encoded if the externalCreativeId may contain any characters requiring encoding.

Response

{
  "messages":[],
  "entity":
   [
    {
      "id":662692,
      "name":"Viant Creative 300x250.gif",
      "type":
      {  "id":1,
         "vendor":"Generic",
         "mediaType":"BANNER",
         "videoType":null
      },
      "status":"APPROVED"
"externalCreativeid": "test123",
      "crawlableUrl": null,
      "impressionTrackingPixel_1": null,
      "impressionTrackingPixel_2": null,
      "impressionTrackingPixel_3": null,
      "impressionTrackingPixel_4": null,
      "size": {
        "width": 300,
        "height": 250
      },
      "channels": [
        "MOBILE"
      ],
      "landingPageUrl": null,
      "adTagId": null,
      "duration": null,
      "bitRate": null
    }
  ]
}