Table of contents:

Introduction

GetMetadata is one of the SOAP actions the RSI provides.

Gets the mail data for the user.

Client/Request

The template used in this action is described on the RSI main page.

GetMetadata

This element has only one attribute:

Server/Response

The template used in this action is described on the RSI main page.

GetMetadataResponse

This element has only one attribute:

MD

This element has two children:

This element may also contain one or more <M> elements.

E

This element has four children:

Q

This element has two children:

M

This element has nine children:

Examples

Client/Request

POST /rsi/rsi.asmx HTTP/1.1
SOAPAction: http://www.hotmail.msn.com/ws/2004/09/oim/rsi/GetMetadata
Cache-Control: no-cache
Content-Type: text/xml; charset=utf-8
Content-Length: 487

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
	<soap:Header>
		<PassportCookie xmlns="http://www.hotmail.msn.com/ws/2004/09/oim/rsi">
			<t>ticket</t>
			<p>profile</p>
		</PassportCookie>
	</soap:Header>
	<soap:Body>
		<GetMetadata xmlns="http://www.hotmail.msn.com/ws/2004/09/oim/rsi" />
	</soap:Body>
</soap:Envelope>

Server/Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: ?

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
	<soap:Body>
		<GetMetadataResponse xmlns="http://www.hotmail.msn.com/ws/2004/09/oim/rsi">
			<MD>
				<E>
					<I>0</I>
					<IU>0</IU>
					<O>0</O>
					<OU>0</OU>
				</E>
				<Q>
					<QTM>409600</QTM>
					<QNM>204800</QNM>
				</Q>
				<M>
					<T>11</T>
					<S>7</S>
					<RT>2026-07-24T09:26:29.720Z</RT>
					<RS>0</RS>
					<SZ>320</SZ>
					<E>example@hotmail.com</E>
					<I>MSG1784881639.24</I>
					<F>00000000-0000-0000-0000-000000000009</F>
					<N>example@hotmail.com</N>
				</M>
			</MD>
		</GetMetadataResponse>
	</soap:Body>
</soap:Envelope>