GET api/FunctionScreen/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

FunctionScreen
NameDescriptionTypeAdditional information
FunctionScreenId

integer

None.

FunctionId

integer

None.

ScreenCode

string

None.

Description

string

None.

Function

Function

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "FunctionScreenId": 1,
  "FunctionId": 2,
  "ScreenCode": "sample string 3",
  "Description": "sample string 4",
  "Function": {
    "FunctionId": 1,
    "FunctionCode": "sample string 2",
    "FunctionName": "sample string 3",
    "FStatus": true,
    "CreatedDate": "2025-12-08T02:46:24.9240537+05:30",
    "CreatedBy": "sample string 6"
  },
  "CreatedDate": "2025-12-08T02:46:24.9240537+05:30",
  "CreatedBy": "sample string 6"
}

application/xml, text/xml

Sample:
<FunctionScreen xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <CreatedBy>sample string 6</CreatedBy>
  <CreatedDate>2025-12-08T02:46:24.9240537+05:30</CreatedDate>
  <Description>sample string 4</Description>
  <Function>
    <CreatedBy>sample string 6</CreatedBy>
    <CreatedDate>2025-12-08T02:46:24.9240537+05:30</CreatedDate>
    <FStatus>true</FStatus>
    <FunctionCode>sample string 2</FunctionCode>
    <FunctionId>1</FunctionId>
    <FunctionName>sample string 3</FunctionName>
  </Function>
  <FunctionId>2</FunctionId>
  <FunctionScreenId>1</FunctionScreenId>
  <ScreenCode>sample string 3</ScreenCode>
</FunctionScreen>