# 1. Abonament: obține evenimente

Urmărește Abonamente atunci când `INSERARE`/`MODIFICARE`/`ȘTERGERE` acțiuni au loc asupra entităților „Ferma”, „Câmp”, „ImagineSateli​tarăCâmp”, „HartăAnalizăRaster”, „HartăAnalizăVector” și alte entități.

Mecanismul de abonamente este construit deasupra MQTT și WebSocket. Recomandarea noastră este să începeți integrarea citind [articolul despre Abonamente AWS AppSync](https://docs.aws.amazon.com/appsync/latest/devguide/real-time-websocket-client.html).&#x20;

{% hint style="info" %}
Evenimentele de abonament sunt trimise imediat ce evenimentul s-a produs în backend‑ul GeoPard.
{% endhint %}

{% hint style="info" %}
Fiecare eveniment de abonament are o identificare unică numită `uuid`, care este utilă pentru a filtra evenimentele procesate și cele pierdute solicitate de la [82. Interogare: Restaurare Evenimente de Abonament](/geopard-tutorials/ro/documentatia-api/prezentarea-generala-a-solicitarilor-api-geopard/82.-interogare-restaureaza-evenimentele-abonamentului.md).
{% endhint %}

{% code lineNumbers="true" %}

```graphql
abonament FollowPlatformEvent {
  followPlatformEvent(userUuid: "<placeholder_of_user_uuid>") {
    uuid
    userUuid
    acțiune
    nodePath {
      entitate
      uuid
    }
  }
}
```

{% endcode %}


---

# Agent Instructions: 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:

```
GET https://docs.geopard.tech/geopard-tutorials/ro/documentatia-api/prezentarea-generala-a-solicitarilor-api-geopard/1.-abonament-obtine-evenimente.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
