Adobe Campaign · Schema
Profile
Profile from Adobe Campaign API
Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing
Properties
| Name | Type | Description |
|---|---|---|
| PKey | string | Unique identifier for the profile. |
| string | Email address of the profile. | |
| firstName | string | First name of the profile. |
| lastName | string | Last name of the profile. |
| phone | string | Phone number of the profile. |
| mobilePhone | string | Mobile phone number. |
| birthDate | string | Date of birth. |
| gender | string | Gender of the profile. |
| preferredLanguage | string | Preferred language code. |
| blackList | boolean | Whether the profile is on the deny list. |
| blackListEmail | boolean | Whether email is blocked for this profile. |
| blackListMobile | boolean | Whether SMS is blocked for this profile. |
| created | string | Profile creation timestamp. |
| lastModified | string | Last modification timestamp. |
| subscriptions | object | Link to the profile subscriptions. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-schema/adobe-campaign-standard-profile-schema.json",
"title": "Profile",
"description": "Profile from Adobe Campaign API",
"type": "object",
"properties": {
"PKey": {
"type": "string",
"description": "Unique identifier for the profile.",
"readOnly": true,
"example": "example_value"
},
"email": {
"type": "string",
"format": "email",
"description": "Email address of the profile.",
"example": "[email protected]"
},
"firstName": {
"type": "string",
"description": "First name of the profile.",
"example": "Example Campaign"
},
"lastName": {
"type": "string",
"description": "Last name of the profile.",
"example": "Example Campaign"
},
"phone": {
"type": "string",
"description": "Phone number of the profile.",
"example": "example_value"
},
"mobilePhone": {
"type": "string",
"description": "Mobile phone number.",
"example": "example_value"
},
"birthDate": {
"type": "string",
"format": "date",
"description": "Date of birth.",
"example": "2026-04-17T12:00:00Z"
},
"gender": {
"type": "string",
"enum": [
"male",
"female",
"unknown"
],
"description": "Gender of the profile.",
"example": "male"
},
"preferredLanguage": {
"type": "string",
"description": "Preferred language code.",
"example": "example_value"
},
"blackList": {
"type": "boolean",
"description": "Whether the profile is on the deny list.",
"example": true
},
"blackListEmail": {
"type": "boolean",
"description": "Whether email is blocked for this profile.",
"example": true
},
"blackListMobile": {
"type": "boolean",
"description": "Whether SMS is blocked for this profile.",
"example": true
},
"created": {
"type": "string",
"format": "date-time",
"description": "Profile creation timestamp.",
"readOnly": true,
"example": "example_value"
},
"lastModified": {
"type": "string",
"format": "date-time",
"description": "Last modification timestamp.",
"readOnly": true,
"example": "example_value"
},
"subscriptions": {
"type": "object",
"description": "Link to the profile subscriptions.",
"readOnly": true,
"properties": {
"href": {
"type": "string"
}
}
}
}
}