Skip to main content

Overview

Allows the client to load previously saved private XML information from the server.

HTTP request

POST /Agent/Storage/LoadPrivateXml

Authentication

Requires a valid JWT bearer token.

Request (JSON)

{
	"localName":Required(Str(PLocalName)),
	"namespace":Required(Str(PNamespace))
}

Input parameters

ParameterDescription
PLocalNameLocal Name of XML to load.
PNamespaceNamespace of XML to load.

Response (JSON)

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

Response parameters

ParameterDescription
PCreatedWhen the information record was first created.
PUpdatedWhen the information record was last updated.
PXmlXML of information stored on the server, for the account.

Notes

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