Sha256: 1b8da2045158e2194e8c9157041c1619324ecc7dcbdca4c67d9af521d5b3b9a8

Contents?: true

Size: 2 KB

Versions: 7

Compression:

Stored size: 2 KB

Contents

# KlaviyoAPI::OnsiteProfileCreateQueryResourceObjectAttributes

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **email** | **String** | Individual's email address | [optional] |
| **phone_number** | **String** | Individual's phone number in E.164 format | [optional] |
| **external_id** | **String** | A unique identifier used by customers to associate Klaviyo profiles with profiles in an external system, such as a point-of-sale system. Format varies based on the external system. | [optional] |
| **anonymous_id** | **String** |  | [optional] |
| **_kx** | **String** | Also known as the `exchange_id`, this is an encrypted identifier used for identifying a profile by Klaviyo's web tracking.  You can use this field as a filter when retrieving profiles via the Get Profiles endpoint. | [optional] |
| **first_name** | **String** | Individual's first name | [optional] |
| **last_name** | **String** | Individual's last name | [optional] |
| **organization** | **String** | Name of the company or organization within the company for whom the individual works | [optional] |
| **title** | **String** | Individual's job title | [optional] |
| **image** | **String** | URL pointing to the location of a profile image | [optional] |
| **location** | [**ProfileLocation**](ProfileLocation.md) |  | [optional] |
| **properties** | **Object** | An object containing key/value pairs for any custom properties assigned to this profile | [optional] |

## Example

```ruby
require 'klaviyo-api-sdk'

instance = KlaviyoAPI::OnsiteProfileCreateQueryResourceObjectAttributes.new(
  email: sarah.mason@klaviyo-demo.com,
  phone_number: +15005550006,
  external_id: null,
  anonymous_id: null,
  _kx: null,
  first_name: Sarah,
  last_name: Mason,
  organization: Example Corporation,
  title: Regional Manager,
  image: https://images.pexels.com/photos/3760854/pexels-photo-3760854.jpeg,
  location: null,
  properties: {"pseudonym":"Dr. Octopus"}
)
```

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
klaviyo-api-sdk-12.0.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md
klaviyo-api-sdk-11.1.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md
klaviyo-api-sdk-11.0.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md
klaviyo-api-sdk-10.0.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md
klaviyo-api-sdk-9.0.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md
klaviyo-api-sdk-8.0.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md
klaviyo-api-sdk-7.1.0 docs/OnsiteProfileCreateQueryResourceObjectAttributes.md