GET api/OrphansStats

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OrphansStats
NameDescriptionTypeAdditional information
CountryId

integer

None.

CtryName

string

None.

Allocated

integer

None.

ImageURL

string

None.

OrphansAvailable

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CountryId": 1,
    "CtryName": "sample string 2",
    "Allocated": 3,
    "ImageURL": "sample string 4",
    "OrphansAvailable": 5
  },
  {
    "CountryId": 1,
    "CtryName": "sample string 2",
    "Allocated": 3,
    "ImageURL": "sample string 4",
    "OrphansAvailable": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfOrphansStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/hhrd_usa_hhrdApi.Models">
  <OrphansStats>
    <Allocated>3</Allocated>
    <CountryId>1</CountryId>
    <CtryName>sample string 2</CtryName>
    <ImageURL>sample string 4</ImageURL>
    <OrphansAvailable>5</OrphansAvailable>
  </OrphansStats>
  <OrphansStats>
    <Allocated>3</Allocated>
    <CountryId>1</CountryId>
    <CtryName>sample string 2</CtryName>
    <ImageURL>sample string 4</ImageURL>
    <OrphansAvailable>5</OrphansAvailable>
  </OrphansStats>
</ArrayOfOrphansStats>