POST VueApi/SubmitDataListPage
Request Information
URI Parameters
None.
Body Parameters
GetDataPageReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fClassId | integer |
None. |
|
| dicList | Collection of DataReqModel |
None. |
|
| fButtonName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"fClassId": 1,
"dicList": [
{
"fId": 1,
"fEntryId": "sample string 2",
"fEntryPageIndex": "sample string 3",
"fCheck": true
},
{
"fId": 1,
"fEntryId": "sample string 2",
"fEntryPageIndex": "sample string 3",
"fCheck": true
}
],
"fButtonName": "sample string 2"
}
application/xml, text/xml
Sample:
<GetDataPageReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue">
<dicList xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:DataReqModel>
<d2p1:fCheck>true</d2p1:fCheck>
<d2p1:fEntryId>sample string 2</d2p1:fEntryId>
<d2p1:fEntryPageIndex>sample string 3</d2p1:fEntryPageIndex>
<d2p1:fId>1</d2p1:fId>
</d2p1:DataReqModel>
<d2p1:DataReqModel>
<d2p1:fCheck>true</d2p1:fCheck>
<d2p1:fEntryId>sample string 2</d2p1:fEntryId>
<d2p1:fEntryPageIndex>sample string 3</d2p1:fEntryPageIndex>
<d2p1:fId>1</d2p1:fId>
</d2p1:DataReqModel>
</dicList>
<fButtonName>sample string 2</fButtonName>
<fClassId>1</fClassId>
</GetDataPageReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.VueApi"> <Msg>sample string 2</Msg> <error>1</error> </ResModel>