POST api/CheckChanges/CheckAllTables
Request Information
URI Parameters
None.
Body Parameters
CheckChangesViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PortalId | string |
None. |
|
| UserId | integer |
None. |
|
| LastUpdate | date |
None. |
|
| DataChanges | boolean |
None. |
|
| ReturnStatus | boolean |
None. |
|
| ReturnMessage | Collection of string |
None. |
|
| ValidationErrors | Dictionary of Object [key] and Object [value] |
None. |
|
| TotalPages | integer |
None. |
|
| TotalRows | integer |
None. |
|
| PageSize | integer |
None. |
|
| IsAuthenticated | boolean |
None. |
|
| SortExpression | string |
None. |
|
| SortDirection | string |
None. |
|
| CurrentPageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"portalId": "sample string 1",
"userId": 2,
"lastUpdate": "2025-12-27T15:36:45.4411552+01:00",
"dataChanges": true,
"returnStatus": true,
"returnMessage": [
"sample string 1",
"sample string 2"
],
"validationErrors": {
"system.Object": {}
},
"totalPages": 6,
"totalRows": 7,
"pageSize": 8,
"isAuthenticated": true,
"sortExpression": "sample string 10",
"sortDirection": "sample string 11",
"currentPageNumber": 12
}
application/xml, text/xml
Sample:
<CheckChangesViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fila12.Web.WebApi.ViewModels.CheckChangesViewModels">
<CurrentPageNumber xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">12</CurrentPageNumber>
<IsAuthenticated xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">true</IsAuthenticated>
<PageSize xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">8</PageSize>
<ReturnMessage xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ReturnMessage>
<ReturnStatus xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">true</ReturnStatus>
<SortDirection xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">sample string 11</SortDirection>
<SortExpression xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">sample string 10</SortExpression>
<TotalPages xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">6</TotalPages>
<TotalRows xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">7</TotalRows>
<ValidationErrors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">
<d2p1:KeyValueOfanyTypeanyType>
<d2p1:Key />
<d2p1:Value />
</d2p1:KeyValueOfanyTypeanyType>
<d2p1:KeyValueOfanyTypeanyType>
<d2p1:Key />
<d2p1:Value />
</d2p1:KeyValueOfanyTypeanyType>
</ValidationErrors>
<DataChanges>true</DataChanges>
<LastUpdate>2025-12-27T15:36:45.4411552+01:00</LastUpdate>
<PortalId>sample string 1</PortalId>
<UserId>2</UserId>
</CheckChangesViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |