Adobe Campaign · JSON Structure

Adobe Campaign Standard Profile Update Structure

ProfileUpdate from Adobe Campaign API

Type: object Properties: 11
Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

ProfileUpdate is a JSON Structure definition published by Adobe Campaign, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

email firstName lastName phone mobilePhone birthDate gender preferredLanguage blackList blackListEmail blackListMobile

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-structure/adobe-campaign-standard-profile-update-structure.json",
  "name": "ProfileUpdate",
  "description": "ProfileUpdate from Adobe Campaign API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "example": "user@example.com"
    },
    "firstName": {
      "type": "string",
      "example": "Example Campaign"
    },
    "lastName": {
      "type": "string",
      "example": "Example Campaign"
    },
    "phone": {
      "type": "string",
      "example": "example_value"
    },
    "mobilePhone": {
      "type": "string",
      "example": "example_value"
    },
    "birthDate": {
      "type": "string",
      "format": "date",
      "example": "2026-04-17T12:00:00Z"
    },
    "gender": {
      "type": "string",
      "enum": [
        "male",
        "female",
        "unknown"
      ],
      "example": "male"
    },
    "preferredLanguage": {
      "type": "string",
      "example": "example_value"
    },
    "blackList": {
      "type": "boolean",
      "example": true
    },
    "blackListEmail": {
      "type": "boolean",
      "example": true
    },
    "blackListMobile": {
      "type": "boolean",
      "example": true
    }
  }
}