Oharra
Baimena behar duzu orria atzitzeko. Direktorioetan saioa has dezakezu edo haiek alda ditzakezu.
Baimena behar duzu orria atzitzeko. Direktorioak alda ditzakezu.
La plataforma Xandr clasifica las creatividades por formato, tipo de medio y subtipo multimedia. El formato define el tipo de recurso de las creatividades (flash, imagen, etc.); el tipo de medio define el estilo de visualización general de los creativos (banner, ampliable, vídeo, etc.); y el subtipo multimedia define el estilo de visualización específico de las creatividades (banner estándar, MediaMind expandable o Standard VAST).
Este servicio de solo lectura permite ver todos los formatos creativos admitidos.
Nota:
Para ver todos los tipos de medios y subtipos multimedia admitidos, puede usar el servicio de tipos de medios y el servicio de subtipo multimedia.
API de REST
| Http (método) | Endpoint | Description |
|---|---|---|
GET |
https://api.appnexus.com/creative-format | Ver todos los formatos creativos. |
GET |
https://api.appnexus.com/creative-format?id=CREATIVE_FORMAT_ID | Ver un formato creativo específico. |
Campos JSON
| Campo | Tipo | Description |
|---|---|---|
id |
Entero | Identificador del formato creativo. |
name |
string | Nombre del formato creativo. Por ejemplo, "flash", "image", "url-html" o "url-xml". |
last_modified |
Timestamp | Fecha y hora en que Xandr modificó por última vez el formato creativo. |
Ejemplos
Ver todos los formatos creativos
$ curl -b cookies -c cookies 'https://api.appnexus.com/creative-format'
{
"response": {
"status": "OK",
"count": 12,
"start_element": 0,
"num_elements": 100,
"creative-formats": [
{
"id": 1,
"name": "url-html",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 2,
"name": "url-js",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 3,
"name": "flash",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 4,
"name": "image",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 5,
"name": "raw-js",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 6,
"name": "raw-html",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 7,
"name": "iframe-html",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 8,
"name": "url-vast",
"last_modified": "2011-06-03 13:29:18"
},
{
"id": 9,
"name": "text",
"last_modified": "2011-06-03 13:29:19"
},
{
"id": 10,
"name": "url-xml",
"last_modified": "2012-01-27 16:14:43"
},
{
"id": 11,
"name": "url-file",
"last_modified": "2012-01-27 16:14:43"
},
{
"id": 12,
"name": "native",
"last_modified": "2015-02-26 23:40:28"
}
]
}
}
Visualización de un formato creativo específico
$ curl -b cookies -c cookies 'https://api.appnexus.com/creative-format?id=5'
{
"response": {
"status": "OK",
"count": 1,
"start_element": 0,
"num_elements": 100,
"creative-format": {
"id": 5,
"name": "raw-js",
"last_modified": "2012-01-17 18:50:25"
}
}
}