# Notification/update

The Notification Update endpoint enables the partners to send the status of the event after it has been processed.

#### Endpoint: `/notifications/update/event/<eventid>`

#### Method: POST

{% tabs %}
{% tab title="POST /notifications/update/event/<eventid> " %}

```perl
curl -i -X POST \
-H "X_API_KEY: [my-api-key]" \
-H "Content-Type: application/json" \
https://api-staging.rentalcover.com/notifications/update/event/<event-id>
{
Acknowledged : true,
ProcessedAt: "2018-01-02 09:00:00"
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
   "Status":"ok"
}
```

{% endtab %}
{% endtabs %}

## **Request Parameters**

|                                                                                      |
| ------------------------------------------------------------------------------------ |
| `Acknowledged boolean` **required** true / false on whether the event was processed. |
| `ProcessedAt DateTime` **required** DateTime when the event was processed.           |

## Response Attributes

`Status:` string #Status OK


---

# 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://partner-docs.covergenius.com/rentalcover/endpoints/notification-update.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.
