POST api/Table/LoadAllTableList
Request Information
URI Parameters
None.
Body Parameters
TableViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| tablemasterid | integer |
None. |
|
| tableno | string |
None. |
|
| tablename | string |
None. |
|
| pickerid | integer |
None. |
|
| packerid | integer |
None. |
|
| checkerid | integer |
None. |
|
| picker | string |
None. |
|
| packer | string |
None. |
|
| checker | string |
None. |
|
| iscurrent | boolean |
None. |
|
| isactive | boolean |
None. |
|
| loginmasterid | integer |
None. |
|
| financialyearid | integer |
None. |
|
| companymasterid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"tablemasterid": 1,
"tableno": "sample string 2",
"tablename": "sample string 3",
"pickerid": 4,
"packerid": 5,
"checkerid": 6,
"picker": "sample string 7",
"packer": "sample string 8",
"checker": "sample string 9",
"iscurrent": true,
"isactive": true,
"loginmasterid": 12,
"financialyearid": 13,
"companymasterid": 14
}
application/xml, text/xml
Sample:
<TableViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/atulsales_api.Models"> <checker>sample string 9</checker> <checkerid>6</checkerid> <companymasterid>14</companymasterid> <financialyearid>13</financialyearid> <isactive>true</isactive> <iscurrent>true</iscurrent> <loginmasterid>12</loginmasterid> <packer>sample string 8</packer> <packerid>5</packerid> <picker>sample string 7</picker> <pickerid>4</pickerid> <tablemasterid>1</tablemasterid> <tablename>sample string 3</tablename> <tableno>sample string 2</tableno> </TableViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| errorCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {},
"errorCode": 4
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/atulsales_api.Models"> <data /> <errorCode>4</errorCode> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>