GET api/DataEntityForms?include={include}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| include | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of DataEntityForm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| DataEntityId | integer |
None. |
|
| FormId | integer |
None. |
|
| IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"DataEntityId": 1,
"FormId": 2,
"IsDeleted": true
},
{
"Id": 1,
"DataEntityId": 1,
"FormId": 2,
"IsDeleted": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDataEntityForm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DOMDM.WebApi.Models">
<DataEntityForm>
<DataEntityId>1</DataEntityId>
<FormId>2</FormId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
</DataEntityForm>
<DataEntityForm>
<DataEntityId>1</DataEntityId>
<FormId>2</FormId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
</DataEntityForm>
</ArrayOfDataEntityForm>