UserList

UserList schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
content array
totalElements integer
totalPages integer
View JSON Schema on GitHub

JSON Schema

analytics-api-user-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/analytics-api-user-list-schema.json",
  "title": "UserList",
  "description": "UserList schema",
  "type": "object",
  "properties": {
    "content": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "loginId": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "admin": {
            "type": "boolean"
          }
        }
      }
    },
    "totalElements": {
      "type": "integer"
    },
    "totalPages": {
      "type": "integer"
    }
  }
}