GET api/Industry

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Industry
NameDescriptionTypeAdditional information
Id

integer

None.

Desc

string

None.

Status

boolean

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Desc": "sample string 2",
    "Status": true,
    "CreatedDate": "2025-12-08T01:56:44.0801042+05:30",
    "CreatedBy": "sample string 5"
  },
  {
    "Id": 1,
    "Desc": "sample string 2",
    "Status": true,
    "CreatedDate": "2025-12-08T01:56:44.0801042+05:30",
    "CreatedBy": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIndustry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <Industry>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDate>2025-12-08T01:56:44.0801042+05:30</CreatedDate>
    <Desc>sample string 2</Desc>
    <Id>1</Id>
    <Status>true</Status>
  </Industry>
  <Industry>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDate>2025-12-08T01:56:44.0801042+05:30</CreatedDate>
    <Desc>sample string 2</Desc>
    <Id>1</Id>
    <Status>true</Status>
  </Industry>
</ArrayOfIndustry>