GET api/GetOthProjectList/{CustomerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CustomerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of OthProject
NameDescriptionTypeAdditional information
OthProjectId

integer

None.

ProjName

string

None.

ImagePath

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "OthProjectId": 1,
    "ProjName": "sample string 2",
    "ImagePath": "sample string 3",
    "Description": "sample string 4"
  },
  {
    "OthProjectId": 1,
    "ProjName": "sample string 2",
    "ImagePath": "sample string 3",
    "Description": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOthProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RECOSMart_Api">
  <OthProject>
    <Description>sample string 4</Description>
    <ImagePath>sample string 3</ImagePath>
    <OthProjectId>1</OthProjectId>
    <ProjName>sample string 2</ProjName>
  </OthProject>
  <OthProject>
    <Description>sample string 4</Description>
    <ImagePath>sample string 3</ImagePath>
    <OthProjectId>1</OthProjectId>
    <ProjName>sample string 2</ProjName>
  </OthProject>
</ArrayOfOthProject>