> ## Documentation Index
> Fetch the complete documentation index at: https://www.bloxs.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get scoring point totals filtered and paged

> Get a paged list of existing scoring point totals, optionally filtered to the given parameters.

## OpenAPI

````json POST /api/v1/realestateobjects/scoringpointtotals/filter
{
  "openapi": "3.0.4",
  "info": {
    "title": "RealEstateObjects V1",
    "description": "Welcome to BETA version of the new RealEstateObjects API - intended for client public testing before the launch of the final version. During this BETA phase, we'll be improving the API based on specific client's feedbacks.",
    "version": "v1"
  },
  "paths": {
    "/api/v1/realestateobjects/scoringpointtotals/filter": {
      "post": {
        "tags": [
          "ScoringPointTotals"
        ],
        "summary": "Get scoring point totals filtered and paged",
        "description": "Get a paged list of existing scoring point totals, optionally filtered to the given parameters.",
        "operationId": "GetScoringPointTotalsFilteredPaged",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ScoringPointTotalSearchRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ScoringPointTotalSearchResult"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "ScoringPointTotalSearchRequest": {
        "type": "object",
        "properties": {
          "paging": {
            "$ref": "#/components/schemas/PagingInfo"
          },
          "sorting": {
            "$ref": "#/components/schemas/SortingInfo"
          },
          "filter": {
            "$ref": "#/components/schemas/ScoringPointTotalSearchRequestFilter"
          }
        },
        "additionalProperties": false
      },
      "ScoringPointTotalSearchResult": {
        "type": "object",
        "properties": {
          "paging": {
            "$ref": "#/components/schemas/PagingInfo"
          },
          "sorting": {
            "$ref": "#/components/schemas/SortingInfo"
          },
          "scoringPointTotals": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ScoringPointTotalSearchResultFilter"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "PagingInfo": {
        "type": "object",
        "properties": {
          "pageSize": {
            "maximum": 1000,
            "minimum": 1,
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "pageNumber": {
            "maximum": 9999,
            "minimum": 1,
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SortingInfo": {
        "type": "object",
        "properties": {
          "columnName": {
            "type": "string",
            "nullable": true
          },
          "order": {
            "type": "integer",
            "description": "Ascending = 0\nDescending = 1",
            "format": "int32",
            "x-enumNames": [
              "Ascending",
              "Descending"
            ]
          }
        },
        "additionalProperties": false
      },
      "ScoringPointTotalSearchRequestFilter": {
        "type": "object",
        "properties": {
          "reference": {
            "type": "string",
            "nullable": true
          },
          "externalIdentifier": {
            "type": "string",
            "nullable": true
          },
          "realEstateObjectReference": {
            "type": "string",
            "nullable": true
          },
          "homeType": {
            "type": "integer",
            "description": "Independent = 1\nDependent = 2",
            "format": "int32",
            "nullable": true,
            "x-enumNames": [
              "Independent",
              "Dependent"
            ]
          },
          "timePeriodTitle": {
            "type": "string",
            "nullable": true
          },
          "pointTotal": {
            "$ref": "#/components/schemas/CompareFilterModelInteger"
          },
          "finalPrice": {
            "$ref": "#/components/schemas/CompareFilterModelDecimal"
          }
        },
        "additionalProperties": false
      },
      "ScoringPointTotalSearchResultFilter": {
        "required": [
          "externalIdentifier",
          "finalPrice",
          "homeType",
          "pointTotal",
          "realEstateObjectReference",
          "reference",
          "timePeriodTitle"
        ],
        "type": "object",
        "properties": {
          "reference": {
            "type": "string",
            "nullable": true
          },
          "externalIdentifier": {
            "type": "string",
            "nullable": true
          },
          "realEstateObjectReference": {
            "type": "string",
            "nullable": true
          },
          "homeType": {
            "type": "integer",
            "description": "Independent = 1\nDependent = 2",
            "format": "int32",
            "x-enumNames": [
              "Independent",
              "Dependent"
            ]
          },
          "timePeriodTitle": {
            "type": "string",
            "nullable": true
          },
          "pointTotal": {
            "type": "integer",
            "format": "int32"
          },
          "finalPrice": {
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "CompareFilterModelInteger": {
        "type": "object",
        "properties": {
          "from": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "to": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CompareFilterModelDecimal": {
        "type": "object",
        "properties": {
          "from": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "to": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    }
  }
}
````

