GET v1/Entities/Research/
Retrieves moodys.com research data for an entity based on the PID.
Request Information
Parameters
| Name | Type | Description | Additional information |
|---|---|---|---|
| request | EntityResearchRequest | Container for the EntityResearchRequest input parameters. See parameter details below. |
Define this parameter in the request URI. |
Parameter Information
Parameter Name: request
| Property | Type | Description |
|---|---|---|
| Id | String | The PID of the Entity. |
| SdkVersion | String | If the client is using the SDK, the version number will be passed along with the request. This field is optional. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"researchElements": [
{
"date": "sample string 1",
"url": "sample string 2",
"headline": "sample string 3"
},
{
"date": "sample string 1",
"url": "sample string 2",
"headline": "sample string 3"
},
{
"date": "sample string 1",
"url": "sample string 2",
"headline": "sample string 3"
}
],
"errorOccurred": false,
"errorMessages": [
"sample string 1",
"sample string 2",
"sample string 3"
],
"request": {
"id": "sample string 1",
"sdkVersion": "sample string 2"
}
}
application/xml, text/xml
Sample:
<EntityResearchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<ErrorMessages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
<d2p1:string>sample string 3</d2p1:string>
</ErrorMessages>
<ErrorOccurred>false</ErrorOccurred>
<Request>
<SdkVersion>sample string 2</SdkVersion>
<Id>sample string 1</Id>
</Request>
<ResearchElements>
<EntityResearch>
<Date>sample string 1</Date>
<Headline>sample string 3</Headline>
<Url>sample string 2</Url>
</EntityResearch>
<EntityResearch>
<Date>sample string 1</Date>
<Headline>sample string 3</Headline>
<Url>sample string 2</Url>
</EntityResearch>
<EntityResearch>
<Date>sample string 1</Date>
<Headline>sample string 3</Headline>
<Url>sample string 2</Url>
</EntityResearch>
</ResearchElements>
</EntityResearchResponse>