GET api/GreenMemberProject

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of Project types for Member

Collection of OffsetProjectTypes
NameDescriptionTypeAdditional information
ProjectTypeId

string

None.

ProjectTypeName

string

None.

PCountry

string

None.

NoOfProjects

integer

None.

Cost

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProjectTypeId": "sample string 1",
    "ProjectTypeName": "sample string 2",
    "PCountry": "sample string 3",
    "NoOfProjects": 4,
    "Cost": 5.0
  },
  {
    "ProjectTypeId": "sample string 1",
    "ProjectTypeName": "sample string 2",
    "PCountry": "sample string 3",
    "NoOfProjects": 4,
    "Cost": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfOffsetProjectTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiShippers.Common.RESTfulGreenable">
  <OffsetProjectTypes>
    <Cost>5</Cost>
    <NoOfProjects>4</NoOfProjects>
    <PCountry>sample string 3</PCountry>
    <ProjectTypeId>sample string 1</ProjectTypeId>
    <ProjectTypeName>sample string 2</ProjectTypeName>
  </OffsetProjectTypes>
  <OffsetProjectTypes>
    <Cost>5</Cost>
    <NoOfProjects>4</NoOfProjects>
    <PCountry>sample string 3</PCountry>
    <ProjectTypeId>sample string 1</ProjectTypeId>
    <ProjectTypeName>sample string 2</ProjectTypeName>
  </OffsetProjectTypes>
</ArrayOfOffsetProjectTypes>