Salesforce · JSON Structure

Salesforce Get List View Records Request Structure

Type: object Properties: 5 Required: 5
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

GetListViewRecordsRequest is a JSON Structure definition published by Salesforce, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

fields pageSize sortBy searchTerm where

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "GetListViewRecordsRequest",
  "properties": {
    "fields": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "pageSize": {
      "type": "integer"
    },
    "sortBy": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "searchTerm": {
      "type": "string"
    },
    "where": {
      "type": "string"
    }
  },
  "required": [
    "fields",
    "pageSize",
    "sortBy",
    "searchTerm",
    "where"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}