# Obtain a new Key

A key is necessary to send logs over the logging pipeline. For more information about the purpose of a pipeline key, see [<mark style="color:blue;">Log Security</mark>](https://docs.ionos.com/cloud/observability/logging-service/overview/log-security).

{% hint style="warning" %}
**Warning:**

* IONOS Cloud adheres to a **Share Once** policy to generate a key; there is no alternative method to retrieve it if lost. Hence, we recommend that you secure the generated key.
* The previous key is instantly revoked when you generate a new key for a specific pipeline.
  {% endhint %}

## Request

To get a new key for a pipeline, you can use the following request. Remember to replace the `{pipelineID}` with a valid ID of a pipeline to access its `key`.

```bash
curl --location
--request POST 'https://logging.de-txl.ionos.com/pipelines/{pipelineID}/key' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $TOKEN'
```

## Response

The response contains the key necessary to configure the `Shared_Key` in Fluent Bit.

```json
{
  "key": "key123"
}
```


---

# 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.ionos.com/cloud/observability/logging-service/api-how-tos/obtain-key.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.
