GET api/JDData/GetPlatformMaster?PlatformId={PlatformId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PlatformId

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of PlatformMasterViewModel
NameDescriptionTypeAdditional information
PlatformId

string

None.

PlatformName

string

None.

IsActive

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "platformId": "sample string 1",
    "platformName": "sample string 2",
    "isActive": "sample string 3"
  },
  {
    "platformId": "sample string 1",
    "platformName": "sample string 2",
    "isActive": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPlatformMasterViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <PlatformMasterViewModel>
    <IsActive>sample string 3</IsActive>
    <PlatformId>sample string 1</PlatformId>
    <PlatformName>sample string 2</PlatformName>
  </PlatformMasterViewModel>
  <PlatformMasterViewModel>
    <IsActive>sample string 3</IsActive>
    <PlatformId>sample string 1</PlatformId>
    <PlatformName>sample string 2</PlatformName>
  </PlatformMasterViewModel>
</ArrayOfPlatformMasterViewModel>