Salesforce · Schema

GetListViewRecordsRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
fields array
pageSize integer
sortBy array
searchTerm string
where string
View JSON Schema on GitHub

JSON Schema

salesforce-get-list-view-records-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "fields": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "pageSize": {
      "type": "integer",
      "example": 10
    },
    "sortBy": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "searchTerm": {
      "type": "string",
      "example": "example_value"
    },
    "where": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "fields",
    "pageSize",
    "sortBy",
    "searchTerm",
    "where"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GetListViewRecordsRequest"
}