Salesforce · Schema

GroupInvitesRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
invitees object
message string
View JSON Schema on GitHub

JSON Schema

salesforce-group-invites-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "invitees": {
      "type": "object",
      "properties": {
        "emails": {
          "type": "array",
          "description": "",
          "example": "user@example.com",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "emails"
      ]
    },
    "message": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "invitees",
    "message"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GroupInvitesRequest"
}