Agorapulse · Schema

AccountSummary

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
accountManagers array
uid string
locked boolean
name string
alias string
username string
screenName string
organizationUid string
profilePictureUrl string
service object
serviceId object
timeZone string
type object
workspaceUid string
industryId integer
industryName string
inboxSyncEnabled boolean
tokenValid boolean
specificServiceAccountData object
version integer
View JSON Schema on GitHub

JSON Schema

accountsummary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AccountSummary",
  "type": "object",
  "properties": {
    "accountManagers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AccountManagerSummary"
      }
    },
    "uid": {
      "type": "string"
    },
    "locked": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "alias": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "screenName": {
      "type": "string"
    },
    "organizationUid": {
      "type": "string"
    },
    "profilePictureUrl": {
      "type": "string"
    },
    "service": {
      "$ref": "#/components/schemas/Service"
    },
    "serviceId": {
      "type": "object"
    },
    "timeZone": {
      "type": "string"
    },
    "type": {
      "$ref": "#/components/schemas/AccountType"
    },
    "workspaceUid": {
      "type": "string"
    },
    "industryId": {
      "type": "integer",
      "format": "int64"
    },
    "industryName": {
      "type": "string"
    },
    "inboxSyncEnabled": {
      "type": "boolean"
    },
    "tokenValid": {
      "type": "boolean"
    },
    "specificServiceAccountData": {
      "$ref": "#/components/schemas/SpecificServiceAccountData"
    },
    "version": {
      "type": "integer",
      "format": "int32",
      "nullable": true
    }
  }
}