GET api/PMCategories/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of T_PM_Categories
NameDescriptionTypeAdditional information
Category_Id

integer

None.

Category_Name

string

None.

Cat_Type

integer

None.

AssetTypeId

integer

None.

ModuleId

integer

None.

LedgerID

integer

None.

IsActive

boolean

None.

cid

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Category_Id": 1,
    "Category_Name": "sample string 2",
    "Cat_Type": 3,
    "AssetTypeId": 4,
    "ModuleId": 5,
    "LedgerID": 1,
    "IsActive": true,
    "cid": 7
  },
  {
    "Category_Id": 1,
    "Category_Name": "sample string 2",
    "Cat_Type": 3,
    "AssetTypeId": 4,
    "ModuleId": 5,
    "LedgerID": 1,
    "IsActive": true,
    "cid": 7
  }
]

application/xml, text/xml

Sample:
<ArrayOfT_PM_Categories xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Login.Models">
  <T_PM_Categories>
    <AssetTypeId>4</AssetTypeId>
    <Cat_Type>3</Cat_Type>
    <Category_Id>1</Category_Id>
    <Category_Name>sample string 2</Category_Name>
    <IsActive>true</IsActive>
    <LedgerID>1</LedgerID>
    <ModuleId>5</ModuleId>
    <cid>7</cid>
  </T_PM_Categories>
  <T_PM_Categories>
    <AssetTypeId>4</AssetTypeId>
    <Cat_Type>3</Cat_Type>
    <Category_Id>1</Category_Id>
    <Category_Name>sample string 2</Category_Name>
    <IsActive>true</IsActive>
    <LedgerID>1</LedgerID>
    <ModuleId>5</ModuleId>
    <cid>7</cid>
  </T_PM_Categories>
</ArrayOfT_PM_Categories>