The contact object

A contact.

AttributeTypeDescription
attributesarrayList of attribute resources of the contact.
attributes[].labelstringThe display name of the attribute this value belongs to.
attributes[].valuestring / integer / number / boolean / objectThe value of the attribute. Its JSON type follows dataType: a string, number, boolean or object. For SINGLE_SELECT and MULTI_SELECT attributes this is the display label of the selected option; a MULTI_SELECT attribute carries its first selection here and the full list in values.
attributes[].valuesarray[string]Every selected option label of a MULTI_SELECT attribute, in order. Null for other data types.
attributes[].uidstringPodium unique identifier for attribute.
attributes[].dataTypestringThe data type for the attribute value.
attributes[].ownerResource.typestringThe scope the attribute belongs to: ORGANIZATION, PRODUCT (an application) or INTEGRATION.
attributes[].ownerResource.uidstringPodium unique identifier for the owner: an organization, application or integration uid.
namestringThe name of the contact resource.
address.statestringThe state of the address.
address.citystringThe city of the address.
address.countrystringThe country of the address.
address.postalCodestringThe postal code of the address.
address.addressLine1stringThe first line of the address.
address.addressLine2stringThe second line of the address.
organization.uidstringPodium unique identifier for the referenced resource.
channelsarrayList of channels for the contact.
channels[].labelstringA label for the channel.
channels[].typestringThe type of the channel.
channels[].identifierstringThe unique identifier for the channel.
channels[].createdAtstringTime at which the resource was created. Date time is in Coordinated Universal Time (UTC).
channels[].updatedAtstringTime at which the resource was updated. Date time is in Coordinated Universal Time (UTC).
channels[].marketingOptedInLocationUidsarray[string]Location UIDs where marketing messages are opted in for the contact channel.
channels[].transactionalOptedOutAtstringTimestamp when the contact channel opted out of transactional messages.
uidstringPodium unique identifier for contact.
createdAtstringTime at which the resource was created. Date time is in Coordinated Universal Time (UTC).
updatedAtstringTime at which the resource was updated. Date time is in Coordinated Universal Time (UTC).
tagsarrayList of tag resources of the contact.
tags[].labelstringThe label of the tag.
tags[].descriptionstringDescription of the tag.
tags[].uidstringPodium unique identifier for tag.
locationsarrayReference to the location resource.
locations[].uidstringPodium unique identifier for the referenced resource.
emailsarray[string]List of the contacts email addresses.
conversationsarrayReference to the conversation resource.
conversations[].uidstringPodium unique identifier for the referenced resource.
phoneNumbersarray[string]List of the contacts phone numbers.
{
  "attributes": [
    {
      "label": "Eye color",
      "value": "Brown eyes",
      "values": [
        "Brown eyes",
        "Green eyes"
      ],
      "uid": "00000000-0000-0000-0000-000000000000",
      "dataType": "",
      "ownerResource": {
        "type": "ORGANIZATION",
        "uid": "00000000-0000-0000-0000-000000000000"
      }
    }
  ],
  "name": "",
  "address": {
    "state": "",
    "city": "",
    "country": "",
    "postalCode": "",
    "addressLine1": "",
    "addressLine2": ""
  },
  "organization": {
    "uid": "00000000-0000-0000-0000-000000000000"
  },
  "channels": [
    {
      "label": "",
      "type": "",
      "identifier": "+15555555555",
      "createdAt": "2015-01-23T23:50:07Z",
      "updatedAt": "2015-01-23T23:50:07Z",
      "marketingOptedInLocationUids": [
        "00000000-0000-0000-0000-000000000000"
      ],
      "transactionalOptedOutAt": "2015-01-23T23:50:07Z"
    }
  ],
  "uid": "00000000-0000-0000-0000-000000000000",
  "createdAt": "2015-01-23T23:50:07Z",
  "updatedAt": "2015-01-23T23:50:07Z",
  "tags": [
    {
      "label": "",
      "description": "",
      "uid": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "locations": [
    {
      "uid": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "emails": [
    ""
  ],
  "conversations": [
    {
      "uid": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "phoneNumbers": [
    ""
  ]
}