# Modify a Logging Pipeline Instance

You can modify your logging pipeline by sending a `PATCH` request with a specific pipeline ID.

{% hint style="info" %}
**Note:** To modify a logging pipeline, you can use the same payload that you use in the `POST` request for creating a logging pipeline. For more information, see [<mark style="color:blue;">Set Up a Logging Pipeline Instance</mark>](/cloud/observability/logging-service/api-how-tos/set-up-logging-pipeline-instance.md).
{% endhint %}

The following is a sample request. Remember to replace the `{pipelineID}` with a valid ID of the respective logging pipeline.

```bash
curl --location \
--request PATCH 'https://logging.de-txl.ionos.com/pipelines/{pipelineID}' \
--header 'Authorization: Bearer $TOKEN' \
--header 'Content-Type: application/json' \
--data '{
    "properties": {
        "name": "new-logging-name",
        "logs": [
            {
                "source": "kubernetes1",
                "tag": "kub1",
                "protocol": "tcp",
                "destinations": [
                    {
                        "type": "loki",
                        "retentionInDays": 7
                    }
                ]
            }
        ]
    }
}'
```


---

# 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/modify-logging-pipeline-instance.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.
