GET api/FormSections/{id}

Get Specific FormSection By Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

FormSection
NameDescriptionTypeAdditional information
FormSectionId

integer

None.

FormId

integer

None.

Position

integer

None.

Title

string

None.

Txt

string

None.

Required

boolean

None.

IsOnePagedQuestion

boolean

None.

IsVisible

boolean

None.

LastChanged

date

None.

LastChange_AuthorId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "FormSectionId": 1,
  "FormId": 2,
  "Position": 3,
  "Title": "sample string 4",
  "Txt": "sample string 5",
  "Required": true,
  "IsOnePagedQuestion": true,
  "IsVisible": true,
  "LastChanged": "2025-08-14T03:23:32.4521481+00:00",
  "LastChange_AuthorId": 10
}

application/xml, text/xml

Sample:
<FormSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models">
  <FormId>2</FormId>
  <FormSectionId>1</FormSectionId>
  <IsOnePagedQuestion>true</IsOnePagedQuestion>
  <IsVisible>true</IsVisible>
  <LastChange_AuthorId>10</LastChange_AuthorId>
  <LastChanged>2025-08-14T03:23:32.4521481+00:00</LastChanged>
  <Position>3</Position>
  <Required>true</Required>
  <Title>sample string 4</Title>
  <Txt>sample string 5</Txt>
</FormSection>