> For the complete documentation index, see [llms.txt](https://help.citrusad.com/retail-media-interface/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.citrusad.com/retail-media-interface/integration/es/data-api/api-overview/reporting-impressions-clicks.md).

# Notificación de impresiones y clics

Para notificar impresiones y clics de forma eficaz, utilice el `/resource/` punto de enlace. Las impresiones deben dirigirse al `first-i` recurso, mientras que los clics deben notificarse al `second-c` recurso.

## Requisito previo

Obtenga su URL base de su Technical Account Manager antes de notificar impresiones y clics.

## Integración de llamadas a puntos de enlace

Las llamadas a puntos de enlace deben ejecutarse dentro de su aplicación o sitio web. En Epsilon Retail Media el proceso de integración es similar tanto para aplicaciones móviles como para sitios web debido a su enfoque de integración «backend a backend». Este enfoque garantiza que las solicitudes de anuncios sean coherentes en las plataformas de escritorio y móviles. Sin embargo, dado que las aplicaciones móviles no admiten bibliotecas JS, debe realizar solicitudes de backend a nuestros puntos de enlace de clics e impresiones.

## Notificación de impresiones

Para notificar una impresión, envíe una solicitud GET con el siguiente formato:

```
https://$BASE_URL.citrusad.com/v1/resource/first-i/AD_ID
```

Reemplace `AD_ID` con el `adId` proporcionado para el anuncio que está notificando.

Por ejemplo, la siguiente solicitud GET notifica una impresión para el `adId`, `display_xw3ybbrymHT_D3VwU3Ic5ThUkbhFNkY4NVNIODU4NEVGRkdT`.

```
https://$BASE_URL.citrusad.com/v1/resource/first-i/display_xw3ybbrymHT_D3VwU3Ic5ThUkbhFNkY4NVNIODU4NEVGRkdT
```

## Notificación de clics

Para notificar un clic, envíe una solicitud GET en el siguiente formato:

```
https://$BASE_URL.citrusad.com/v1/resource/second-c/AD_ID
```

Reemplace `AD_ID` con el `adId` proporcionado para el anuncio que está notificando.

Por ejemplo, la siguiente solicitud GET notifica una impresión para el `adId`, `display_xw3ybbrymHT_D3VwU3Ic5ThUkbhFNkY4NVNIODU4NEVGRkdT`.

```
https://$BASE_URL.citrusad.com/v1/resource/second-c/display_xw3ybbrymHT_D3VwU3Ic5ThUkbhFNkY4NVNIODU4NEVGRkdT
```

## Validación de API para las ID de anuncios realizados

La API incluye validación para las ID de anuncios con el fin de garantizar datos precisos y reducir errores. Las solicitudes con ID de anuncios codificadas o con prefijos incorrectos devuelven un error 400 y un mensaje de error detallado.

### Beneficios clave

* Resolución de problemas más rápida: Los comentarios rápidos ayudan a los minoristas a solucionar los problemas más rápido.
* Mejor precisión: Menos errores significan informes y datos más precisos.

### Ejemplo de mensaje de error

"ID de anuncio no válida. Debe estar correctamente codificada y tener el prefijo 'display\_', 'banner\_' o 'shotgun\_'"


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.citrusad.com/retail-media-interface/integration/es/data-api/api-overview/reporting-impressions-clicks.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
