GET api/SubFormMappings/GetSubFormMappingByFormID/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SubFormMappingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| FormID | integer |
None. |
|
| SubFormID | integer |
None. |
|
| FormName | string |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"FormID": 1,
"SubFormID": 1,
"FormName": "sample string 2",
"CreatedDate": "2026-06-30T14:15:11.5119438+01:00",
"UpdatedDate": "2026-06-30T14:15:11.5119438+01:00"
},
{
"ID": 1,
"FormID": 1,
"SubFormID": 1,
"FormName": "sample string 2",
"CreatedDate": "2026-06-30T14:15:11.5119438+01:00",
"UpdatedDate": "2026-06-30T14:15:11.5119438+01:00"
}
]
text/xml
Sample:
<ArrayOfSubFormMappingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models">
<SubFormMappingModel>
<CreatedDate>2026-06-30T14:15:11.5119438+01:00</CreatedDate>
<FormID>1</FormID>
<FormName>sample string 2</FormName>
<ID>1</ID>
<SubFormID>1</SubFormID>
<UpdatedDate>2026-06-30T14:15:11.5119438+01:00</UpdatedDate>
</SubFormMappingModel>
<SubFormMappingModel>
<CreatedDate>2026-06-30T14:15:11.5119438+01:00</CreatedDate>
<FormID>1</FormID>
<FormName>sample string 2</FormName>
<ID>1</ID>
<SubFormID>1</SubFormID>
<UpdatedDate>2026-06-30T14:15:11.5119438+01:00</UpdatedDate>
</SubFormMappingModel>
</ArrayOfSubFormMappingModel>