GET api/DataEntityLookupForms?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 DataEntityLookupForm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| DataEntityLookupId | integer |
None. |
|
| FormId | integer |
None. |
|
| IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"DataEntityLookupId": 2,
"FormId": 3,
"IsDeleted": true
},
{
"Id": 1,
"DataEntityLookupId": 2,
"FormId": 3,
"IsDeleted": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDataEntityLookupForm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DOMDM.WebApi.Models">
<DataEntityLookupForm>
<DataEntityLookupId>2</DataEntityLookupId>
<FormId>3</FormId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
</DataEntityLookupForm>
<DataEntityLookupForm>
<DataEntityLookupId>2</DataEntityLookupId>
<FormId>3</FormId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
</DataEntityLookupForm>
</ArrayOfDataEntityLookupForm>