GET api/FormSections/SectionOfForm/{formId}
Get Form Sections Of Form
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| formId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FormSection| Name | Description | Type | Additional 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-12-22T11:43:04.6515006+00:00",
"LastChange_AuthorId": 10
},
{
"FormSectionId": 1,
"FormId": 2,
"Position": 3,
"Title": "sample string 4",
"Txt": "sample string 5",
"Required": true,
"IsOnePagedQuestion": true,
"IsVisible": true,
"LastChanged": "2025-12-22T11:43:04.6515006+00:00",
"LastChange_AuthorId": 10
}
]
application/xml, text/xml
Sample:
<ArrayOfFormSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ELO_IdentityAPI_Eloapp.net.Models">
<FormSection>
<FormId>2</FormId>
<FormSectionId>1</FormSectionId>
<IsOnePagedQuestion>true</IsOnePagedQuestion>
<IsVisible>true</IsVisible>
<LastChange_AuthorId>10</LastChange_AuthorId>
<LastChanged>2025-12-22T11:43:04.6515006+00:00</LastChanged>
<Position>3</Position>
<Required>true</Required>
<Title>sample string 4</Title>
<Txt>sample string 5</Txt>
</FormSection>
<FormSection>
<FormId>2</FormId>
<FormSectionId>1</FormSectionId>
<IsOnePagedQuestion>true</IsOnePagedQuestion>
<IsVisible>true</IsVisible>
<LastChange_AuthorId>10</LastChange_AuthorId>
<LastChanged>2025-12-22T11:43:04.6515006+00:00</LastChanged>
<Position>3</Position>
<Required>true</Required>
<Title>sample string 4</Title>
<Txt>sample string 5</Txt>
</FormSection>
</ArrayOfFormSection>