Skip to main content

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)

{
	"xml":Required(Xml(PXml))
}

Input parameters

ParameterDescription
PXmlXML of information to store on the server, for the account.

Response (JSON)

{
	"created": Required(DateTime(PCreated)),
	"updated": Required(DateTime(PUpdated))
}

Response parameters

ParameterDescription
PCreatedWhen the information record was first created.
PUpdatedWhen the information record was last updated.

Notes

This endpoint uses the request schema notation described in Pattern matching.