GET api/Industry/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Industry| Name | Description | Type | Additional 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:36.4707296+05:30",
"CreatedBy": "sample string 5"
}
application/xml, text/xml
Sample:
<Industry 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:36.4707296+05:30</CreatedDate> <Desc>sample string 2</Desc> <Id>1</Id> <Status>true</Status> </Industry>