GetNormalizedStringsResponse Message Object
Defines the response message that the GetNormalizedStrings operation returns to the client.
<wsdl:message name="GetNormalizedStringsResponse"> <wsdl:part name="parameters" element="tns:GetNormalizedStringsResponse" /> </wsdl:message>
Body Elements
Element | Description | Data Type |
|---|---|---|
NormalizedStrings | An array of normalized strings. The items in this array correspond directly to the items in the Strings array that you specified in the request message. | string array |
Header Elements
Element | Description | Data Type |
|---|---|---|
TrackingId | The identifier of the log entry that contains details about the API call. | string |
SOAP
The following example shows the complete SOAP envelope for a GetNormalizedStringsResponse response.
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Header xmlns="https://adcenter.microsoft.com/v8"> <TrackingId p4:nil="false" xmlns:p4="http://www.w3.org/2001/XMLSchema-instance"></TrackingId> </s:Header> <s:Body> <GetNormalizedStringsResponse xmlns="https://adcenter.microsoft.com/v8"> <NormalizedStrings p4:nil="false" xmlns:a1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:p4="http://www.w3.org/2001/XMLSchema-instance"> <a1:string></a1:string> </NormalizedStrings> </GetNormalizedStringsResponse> </s:Body> </s:Envelope>