# Elements notification

## Elements notification

<mark style="color:orange;">`PUT`</mark> `https://example-extension.mic.io/lvis/:lvis_instance_id/projects/:project_id/events/:event_id/elements`

#### Path Parameters

| Name               | Type   | Description                                                  |
| ------------------ | ------ | ------------------------------------------------------------ |
| lvis\_instance\_id | string | Unique identifier across all M/IC instances, in UUID format. |
| project\_id        | string | Project UUID.                                                |
| event\_id          | string | Event UUID.                                                  |

#### Request Body

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| event\_id | string | Event UUID. |

{% tabs %}
{% tab title="200 " %}

```javascript
// Any success response expected, response body ignoring.
```

{% endtab %}
{% endtabs %}

## Example

```bash
curl --request PUT \
  --url https://example-extension.mic.io/lvis/c068dd33-46c3-4789-a619-b14e4bcbe990/projects/da34516f-00af-435e-bd03-ab1720755dda/events/a8552581-a10f-4fa7-85e9-7c9c82766be7/elements \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
    "event_id": "a8552581-a10f-4fa7-85e9-7c9c82766be7"
  }'
```
