# customer.joined.free\_tier

## `customer.joined.free_tier`

#### Payload Structure

```js
{
  "payload": {
    "createdAt": "2025-05-30T11:23:12.195Z",
    "tierId": "0d0c6284",
    "merchantId": "inveterate",
    "detail": {
      "entryType": "FREE_SIGNUP",
      "previousTierName": "PreviousTier",
      "previousTierId": "6a538edc",
      "tierName": "FREE"
    },
    "updatedAt": "2025-05-30T11:23:12.195Z",
    "customerId": "7733576892547"
  },
  "metadata": {
    "id": "a15fb599199de3eb84f4df329d9b1389",
    "retryCount": 0,
    "shopDomain": "inveterate.myshopify.com",
    "topic": "customer.joined.free_tier",
    "version": "2025-06",
    "triggerredAt": "2025-05-30T11:23:12.888Z"
  }
}
```

#### Payload Fields

**payload**

* `createdAt` (string): ISO timestamp when the event was created
* `tierId` (string): Unique identifier for the tier the customer joined
* `merchantId` (string): Merchant identifier
* `customerId` (string): Customer identifier
* `updatedAt` (string): ISO timestamp when the event was last updated
* `detail` (object): Additional details about the tier transition
  * `entryType` (string): How the customer joined (e.g., "FREE\_SIGNUP")
  * `previousTierName` (string): Name of the previous tier (if applicable)
  * `previousTierId` (string): ID of the previous tier (if applicable)
  * `tierName` (string): Name of the new tier

**metadata**

* `id` (string): Unique event identifier
* `retryCount` (number): Number of retry attempts for this event
* `shopDomain` (string): Shopify domain of the merchant
* `topic` (string): Event topic name
* `version` (string): API version
* `triggerredAt` (string): ISO timestamp when the event was triggered
