GET api/CompanyCategory/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CompanyCategory
NameDescriptionTypeAdditional information
CompanyCategoryId

integer

None.

CompanyCategoryName

string

None.

IsActive

boolean

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CompanyCategoryId": 1,
  "CompanyCategoryName": "sample string 2",
  "IsActive": true,
  "CreatedDate": "2025-12-08T01:56:39.7832373+05:30",
  "CreatedBy": "sample string 5"
}

application/xml, text/xml

Sample:
<CompanyCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <CreatedBy>sample string 5</CreatedBy>
  <CreatedDate>2025-12-08T01:56:39.7832373+05:30</CreatedDate>
  <CompanyCategoryId>1</CompanyCategoryId>
  <CompanyCategoryName>sample string 2</CompanyCategoryName>
  <IsActive>true</IsActive>
</CompanyCategory>