> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# klaviyo-settings

> Klaviyo Settings - manage account details, tags, tag groups, forms, and webhooks

**Server path:** `/klaviyo-settings` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                      | Description      |
| ------------------------------------------------------------------------- | ---------------- |
| [`klaviyo_settings_create_tag`](#klaviyo_settings_create_tag)             | Create Tag       |
| [`klaviyo_settings_create_tag_group`](#klaviyo_settings_create_tag_group) | Create Tag Group |
| [`klaviyo_settings_create_webhook`](#klaviyo_settings_create_webhook)     | Create Webhook   |
| [`klaviyo_settings_delete_tag`](#klaviyo_settings_delete_tag)             | Delete Tag       |
| [`klaviyo_settings_delete_tag_group`](#klaviyo_settings_delete_tag_group) | Delete Tag Group |
| [`klaviyo_settings_get_account`](#klaviyo_settings_get_account)           | Get Account      |
| [`klaviyo_settings_get_accounts`](#klaviyo_settings_get_accounts)         | Get Accounts     |
| [`klaviyo_settings_get_form`](#klaviyo_settings_get_form)                 | Get Form         |
| [`klaviyo_settings_get_forms`](#klaviyo_settings_get_forms)               | Get Forms        |
| [`klaviyo_settings_get_tag`](#klaviyo_settings_get_tag)                   | Get Tag          |
| [`klaviyo_settings_get_tag_group`](#klaviyo_settings_get_tag_group)       | Get Tag Group    |
| [`klaviyo_settings_get_tag_groups`](#klaviyo_settings_get_tag_groups)     | Get Tag Groups   |
| [`klaviyo_settings_get_tags`](#klaviyo_settings_get_tags)                 | Get Tags         |
| [`klaviyo_settings_get_webhook`](#klaviyo_settings_get_webhook)           | Get Webhook      |
| [`klaviyo_settings_get_webhooks`](#klaviyo_settings_get_webhooks)         | Get Webhooks     |
| [`klaviyo_settings_tag_campaigns`](#klaviyo_settings_tag_campaigns)       | Tag Campaigns    |
| [`klaviyo_settings_tag_flows`](#klaviyo_settings_tag_flows)               | Tag Flows        |
| [`klaviyo_settings_tag_lists`](#klaviyo_settings_tag_lists)               | Tag Lists        |
| [`klaviyo_settings_tag_segments`](#klaviyo_settings_tag_segments)         | Tag Segments     |
| [`klaviyo_settings_update_tag`](#klaviyo_settings_update_tag)             | Update Tag       |
| [`klaviyo_settings_update_tag_group`](#klaviyo_settings_update_tag_group) | Update Tag Group |
| [`klaviyo_settings_update_webhook`](#klaviyo_settings_update_webhook)     | Update Webhook   |

***

## klaviyo\_settings\_create\_tag

Create Tag

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "object",
        "description": "The data value",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type value",
            "enum": [
              "tag"
            ]
          },
          "attributes": {
            "type": "object",
            "description": "The attributes value"
          },
          "relationships": {
            "type": "object",
            "description": "The relationships value"
          }
        },
        "required": [
          "type",
          "attributes"
        ]
      }
    },
    "required": [
      "PCID",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_create\_tag\_group

Create Tag Group

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "object",
        "description": "The data value",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type value",
            "enum": [
              "tag-group"
            ]
          },
          "attributes": {
            "type": "object",
            "description": "The attributes value"
          }
        },
        "required": [
          "type",
          "attributes"
        ]
      }
    },
    "required": [
      "PCID",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_create\_webhook

Create Webhook

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "object",
        "description": "The data value",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type value",
            "enum": [
              "webhook"
            ]
          },
          "attributes": {
            "type": "object",
            "description": "The attributes value"
          },
          "relationships": {
            "type": "object",
            "description": "The relationships value"
          }
        },
        "required": [
          "type",
          "attributes",
          "relationships"
        ]
      }
    },
    "required": [
      "PCID",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_delete\_tag

Delete Tag

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `id`       | string | Yes      | —       | The Tag ID                                           |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_delete\_tag\_group

Delete Tag Group

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `id`       | string | Yes      | —       | The Tag Group ID                                     |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag Group ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_account

Get Account

**Parameters:**

| Parameter         | Type      | Required | Default | Description                                                                                                                                                                                                      |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`              | string    | Yes      | —       | The ID of the account                                                                                                                                                                                            |
| `fields[account]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `revision`        | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the account"
      },
      "fields[account]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "contact_information",
            "contact_information.default_sender_email",
            "contact_information.default_sender_name",
            "contact_information.organization_name",
            "contact_information.street_address",
            "contact_information.street_address.address1",
            "contact_information.street_address.address2",
            "contact_information.street_address.city",
            "contact_information.street_address.country",
            "contact_information.street_address.region",
            "contact_information.street_address.zip",
            "contact_information.website_url",
            "industry",
            "locale",
            "preferred_currency",
            "public_api_key",
            "test_account",
            "timezone"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_accounts

Get Accounts

**Parameters:**

| Parameter         | Type      | Required | Default | Description                                                                                                                                                                                                      |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `fields[account]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `revision`        | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "fields[account]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "contact_information",
            "contact_information.default_sender_email",
            "contact_information.default_sender_name",
            "contact_information.organization_name",
            "contact_information.street_address",
            "contact_information.street_address.address1",
            "contact_information.street_address.address2",
            "contact_information.street_address.city",
            "contact_information.street_address.country",
            "contact_information.street_address.region",
            "contact_information.street_address.zip",
            "contact_information.website_url",
            "industry",
            "locale",
            "preferred_currency",
            "public_api_key",
            "test_account",
            "timezone"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_form

Get Form

**Parameters:**

| Parameter      | Type      | Required | Default | Description                                                                                                                                                                                                      |
| -------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`           | string    | Yes      | —       | The ID of the form                                                                                                                                                                                               |
| `fields[form]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `revision`     | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the form"
      },
      "fields[form]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "ab_test",
            "created_at",
            "definition",
            "definition.versions",
            "name",
            "status",
            "updated_at"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_forms

Get Forms

**Parameters:**

| Parameter      | Type      | Required | Default | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| -------------- | --------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `fields[form]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets)                                                                                                                                                                                                                                                                                                                                      |
| `filter`       | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering\&lt;br\&gt;Allowed](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering\&lt;br\&gt;Allowed) field(s)/operator(s):\<br>`id`: `any`, `equals`\<br>`name`: `any`, `contains`, `equals`\<br>`ab_test`: `equals`\<br>`updated_at`: `greater-or-equal`, `greater-than`, `less-or-equal`, `less-than`\<br>`created_at`: `greater-or-equal`, `greater-than`, `less-or-equal`, `less-than`\<br>`status`: `equals` |
| `page[cursor]` | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination)                                                                                                                                                                                                                                                                                                                                                  |
| `page[size]`   | integer   | No       | —       | Default: 20. Min: 1. Max: 100.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| `sort`         | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting)                                                                                                                                                                                                                                                                                                                                                        |
| `revision`     | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "fields[form]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "ab_test",
            "created_at",
            "name",
            "status",
            "updated_at"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "filter": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering<br>Allowed field(s)/operator(s):<br>`id`: `any`, `equals`<br>`name`: `any`, `contains`, `equals`<br>`ab_test`: `equals`<br>`updated_at`: `greater-or-equal`, `greater-than`, `less-or-equal`, `less-than`<br>`created_at`: `greater-or-equal`, `greater-than`, `less-or-equal`, `less-than`<br>`status`: `equals`"
      },
      "page[cursor]": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination"
      },
      "page[size]": {
        "type": "integer",
        "description": "Default: 20. Min: 1. Max: 100."
      },
      "sort": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting",
        "enum": [
          "created_at",
          "-created_at",
          "updated_at",
          "-updated_at"
        ]
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_tag

Get Tag

**Parameters:**

| Parameter           | Type      | Required | Default | Description                                                                                                                                                                                                      |
| ------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`                | string    | Yes      | —       | The Tag ID                                                                                                                                                                                                       |
| `fields[tag-group]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `fields[tag]`       | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `include`           | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships)       |
| `revision`          | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "fields[tag-group]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "default",
            "exclusive",
            "name"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "fields[tag]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "name"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "include": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "tag-group"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_tag\_group

Get Tag Group

**Parameters:**

| Parameter           | Type      | Required | Default | Description                                                                                                                                                                                                      |
| ------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`                | string    | Yes      | —       | The Tag Group ID                                                                                                                                                                                                 |
| `fields[tag-group]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `revision`          | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag Group ID"
      },
      "fields[tag-group]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "default",
            "exclusive",
            "name"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_tag\_groups

Get Tag Groups

**Parameters:**

| Parameter           | Type      | Required | Default | Description                                                                                                                                                                                                                                                                                                                                                                   |
| ------------------- | --------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `fields[tag-group]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets)                                                                                                                                                              |
| `filter`            | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering\&lt;br\&gt;Allowed](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering\&lt;br\&gt;Allowed) field(s)/operator(s):\<br>`name`: `contains`, `ends-with`, `equals`, `starts-with`\<br>`exclusive`: `equals`\<br>`default`: `equals` |
| `page[cursor]`      | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination)                                                                                                                                                                          |
| `sort`              | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting)                                                                                                                                                                                |
| `revision`          | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                                                                                                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "fields[tag-group]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "default",
            "exclusive",
            "name"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "filter": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering<br>Allowed field(s)/operator(s):<br>`name`: `contains`, `ends-with`, `equals`, `starts-with`<br>`exclusive`: `equals`<br>`default`: `equals`"
      },
      "page[cursor]": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination"
      },
      "sort": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting",
        "enum": [
          "id",
          "-id",
          "name",
          "-name"
        ]
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_tags

Get Tags

**Parameters:**

| Parameter           | Type      | Required | Default | Description                                                                                                                                                                                                                                                                                                                 |
| ------------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `fields[tag-group]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets)                                                                                                            |
| `fields[tag]`       | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets)                                                                                                            |
| `filter`            | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering\&lt;br\&gt;Allowed](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering\&lt;br\&gt;Allowed) field(s)/operator(s):\<br>`name`: `contains`, `ends-with`, `equals`, `starts-with` |
| `include`           | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships)                                                                                                                  |
| `page[cursor]`      | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination)                                                                                                                        |
| `sort`              | string    | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting)                                                                                                                              |
| `revision`          | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                                                                                                                                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "fields[tag-group]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "default",
            "exclusive",
            "name"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "fields[tag]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "name"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "filter": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#filtering<br>Allowed field(s)/operator(s):<br>`name`: `contains`, `ends-with`, `equals`, `starts-with`"
      },
      "include": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "tag-group"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships"
      },
      "page[cursor]": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#pagination"
      },
      "sort": {
        "type": "string",
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sorting",
        "enum": [
          "id",
          "-id",
          "name",
          "-name"
        ]
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_webhook

Get Webhook

**Parameters:**

| Parameter         | Type      | Required | Default | Description                                                                                                                                                                                                      |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`              | string    | Yes      | —       | The ID of the webhook.                                                                                                                                                                                           |
| `fields[webhook]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `include`         | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships)       |
| `revision`        | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the webhook."
      },
      "fields[webhook]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "created_at",
            "description",
            "enabled",
            "endpoint_url",
            "name",
            "updated_at"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "include": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "webhook-topics"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_get\_webhooks

Get Webhooks

**Parameters:**

| Parameter         | Type      | Required | Default | Description                                                                                                                                                                                                      |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `fields[webhook]` | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets) |
| `include`         | string\[] | No       | —       | For more information please visit [https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships](https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships)       |
| `revision`        | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix])                                                                                                                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "fields[webhook]": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "created_at",
            "description",
            "enabled",
            "endpoint_url",
            "name",
            "updated_at"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#sparse-fieldsets"
      },
      "include": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "webhook-topics"
          ]
        },
        "description": "For more information please visit https://developers.klaviyo.com/en/v2026-01-15/reference/api-overview#relationships"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      }
    },
    "required": [
      "PCID",
      "revision"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_tag\_campaigns

Tag Campaigns

**Parameters:**

| Parameter  | Type      | Required | Default | Description                                          |
| ---------- | --------- | -------- | ------- | ---------------------------------------------------- |
| `id`       | string    | Yes      | —       | The Tag ID                                           |
| `revision` | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object\[] | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "campaign"
              ],
              "description": "The type value"
            },
            "id": {
              "type": "string",
              "description": "The IDs of the campaigns to link or unlink with the given Tag ID"
            }
          },
          "required": [
            "type",
            "id"
          ]
        },
        "description": "The data value"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_tag\_flows

Tag Flows

**Parameters:**

| Parameter  | Type      | Required | Default | Description                                          |
| ---------- | --------- | -------- | ------- | ---------------------------------------------------- |
| `id`       | string    | Yes      | —       | The Tag ID                                           |
| `revision` | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object\[] | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "flow"
              ],
              "description": "The type value"
            },
            "id": {
              "type": "string",
              "description": "The IDs of the flows to link or unlink with the given Tag ID"
            }
          },
          "required": [
            "type",
            "id"
          ]
        },
        "description": "The data value"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_tag\_lists

Tag Lists

**Parameters:**

| Parameter  | Type      | Required | Default | Description                                          |
| ---------- | --------- | -------- | ------- | ---------------------------------------------------- |
| `id`       | string    | Yes      | —       | The Tag ID                                           |
| `revision` | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object\[] | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "list"
              ],
              "description": "The type value"
            },
            "id": {
              "type": "string",
              "description": "The IDs of the lists to link or unlink with the given Tag ID"
            }
          },
          "required": [
            "type",
            "id"
          ]
        },
        "description": "The data value"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_tag\_segments

Tag Segments

**Parameters:**

| Parameter  | Type      | Required | Default | Description                                          |
| ---------- | --------- | -------- | ------- | ---------------------------------------------------- |
| `id`       | string    | Yes      | —       | The Tag ID                                           |
| `revision` | string    | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object\[] | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "segment"
              ],
              "description": "The type value"
            },
            "id": {
              "type": "string",
              "description": "The IDs of the segments to link or unlink with the given Tag ID"
            }
          },
          "required": [
            "type",
            "id"
          ]
        },
        "description": "The data value"
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_update\_tag

Update Tag

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `id`       | string | Yes      | —       | The Tag ID                                           |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "object",
        "description": "The data value",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type value",
            "enum": [
              "tag"
            ]
          },
          "id": {
            "type": "string",
            "description": "The Tag ID"
          },
          "attributes": {
            "type": "object",
            "description": "The attributes value"
          }
        },
        "required": [
          "type",
          "id",
          "attributes"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_update\_tag\_group

Update Tag Group

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `id`       | string | Yes      | —       | The Tag Group ID                                     |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The Tag Group ID"
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "object",
        "description": "The data value",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type value",
            "enum": [
              "tag-group"
            ]
          },
          "id": {
            "type": "string",
            "description": "The Tag Group ID"
          },
          "attributes": {
            "type": "object",
            "description": "The attributes value"
          }
        },
        "required": [
          "type",
          "id",
          "attributes"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>

***

## klaviyo\_settings\_update\_webhook

Update Webhook

**Parameters:**

| Parameter  | Type   | Required | Default | Description                                          |
| ---------- | ------ | -------- | ------- | ---------------------------------------------------- |
| `id`       | string | Yes      | —       | The ID of the webhook.                               |
| `revision` | string | Yes      | —       | API endpoint revision (format: YYYY-MM-DD\[.suffix]) |
| `data`     | object | Yes      | —       | The data value                                       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The ID of the webhook."
      },
      "revision": {
        "type": "string",
        "description": "API endpoint revision (format: YYYY-MM-DD[.suffix])"
      },
      "data": {
        "type": "object",
        "description": "The data value",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type value",
            "enum": [
              "webhook"
            ]
          },
          "id": {
            "type": "string",
            "description": "The ID of the webhook."
          },
          "attributes": {
            "type": "object",
            "description": "The attributes value"
          },
          "relationships": {
            "type": "object",
            "description": "The relationships value"
          }
        },
        "required": [
          "type",
          "id",
          "attributes"
        ]
      }
    },
    "required": [
      "PCID",
      "id",
      "revision",
      "data"
    ]
  }
  ```
</Expandable>
