> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Save private XML

> Allows the client to save private information on the server using XML.

## Overview

Allows the client to save private information on the server using XML.

## HTTP request

`POST /Agent/Storage/SavePrivateXml`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
	"xml":Required(Xml(PXml))
}
```

## Input parameters

| Parameter | Description                                                 |
| --------- | ----------------------------------------------------------- |
| PXml      | XML of information to store on the server, for the account. |

## Response (JSON)

```json theme={null}
{
	"created": Required(DateTime(PCreated)),
	"updated": Required(DateTime(PUpdated))
}
```

## Response parameters

| Parameter | Description                                    |
| --------- | ---------------------------------------------- |
| PCreated  | When the information record was first created. |
| PUpdated  | When the information record was last updated.  |

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).
