> ## 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.

# activetrail-management

> ActiveTrail Management - account settings, automations, and webhooks

**Server path:** `/activetrail-management` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                | Description                                        |
| ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
| [`activetrail_management_create_content_category`](#activetrail_management_create_content_category)                 | Create a new content category                      |
| [`activetrail_management_create_webhook`](#activetrail_management_create_webhook)                                   | Create a new webhook                               |
| [`activetrail_management_delete_content_category`](#activetrail_management_delete_content_category)                 | Delete a content category by ID                    |
| [`activetrail_management_delete_webhook`](#activetrail_management_delete_webhook)                                   | Delete a webhook                                   |
| [`activetrail_management_get_account_balance`](#activetrail_management_get_account_balance)                         | Get email and SMS credit balance                   |
| [`activetrail_management_get_automation`](#activetrail_management_get_automation)                                   | Get automation details by ID                       |
| [`activetrail_management_get_automation_activation`](#activetrail_management_get_automation_activation)             | Get automation activation status                   |
| [`activetrail_management_get_automation_contacts_ended`](#activetrail_management_get_automation_contacts_ended)     | Get contacts that finished an automation           |
| [`activetrail_management_get_automation_contacts_started`](#activetrail_management_get_automation_contacts_started) | Get contacts that started an automation            |
| [`activetrail_management_get_automation_design`](#activetrail_management_get_automation_design)                     | Get complete automation design                     |
| [`activetrail_management_get_automation_overview_report`](#activetrail_management_get_automation_overview_report)   | Get summary report for an automation               |
| [`activetrail_management_get_automation_trigger_info`](#activetrail_management_get_automation_trigger_info)         | Get automation trigger information                 |
| [`activetrail_management_get_contact_fields`](#activetrail_management_get_contact_fields)                           | Get account contact fields filtered by type        |
| [`activetrail_management_get_contact_growth_report`](#activetrail_management_get_contact_growth_report)             | Get daily contact growth metrics (active/inactive) |
| [`activetrail_management_get_content_category`](#activetrail_management_get_content_category)                       | Get a specific content category by ID              |
| [`activetrail_management_get_executive_report`](#activetrail_management_get_executive_report)                       | Get executive-level account reports                |
| [`activetrail_management_get_sending_profiles`](#activetrail_management_get_sending_profiles)                       | Get email sending profiles configured for account  |
| [`activetrail_management_get_sms_sending_profiles`](#activetrail_management_get_sms_sending_profiles)               | Get SMS sending profiles for account               |
| [`activetrail_management_get_webhook`](#activetrail_management_get_webhook)                                         | Get a specific webhook by ID                       |
| [`activetrail_management_list_automations`](#activetrail_management_list_automations)                               | Get account automations                            |
| [`activetrail_management_list_content_categories`](#activetrail_management_list_content_categories)                 | Get all account content categories                 |
| [`activetrail_management_list_webhooks`](#activetrail_management_list_webhooks)                                     | Get account webhooks                               |
| [`activetrail_management_update_automation_activation`](#activetrail_management_update_automation_activation)       | Activate or deactivate an automation               |
| [`activetrail_management_update_content_category`](#activetrail_management_update_content_category)                 | Update a content category                          |
| [`activetrail_management_update_webhook`](#activetrail_management_update_webhook)                                   | Update a webhook                                   |

***

## activetrail\_management\_create\_content\_category

Create a new content category

**Parameters:**

| Parameter     | Type   | Required | Default | Description          |
| ------------- | ------ | -------- | ------- | -------------------- |
| `description` | string | No       | —       | Category description |
| `name`        | string | Yes      | —       | Category name        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "description": {
        "type": "string",
        "description": "Category description"
      },
      "name": {
        "type": "string",
        "description": "Category name"
      }
    },
    "required": [
      "PCID",
      "name"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_create\_webhook

Create a new webhook

**Parameters:**

| Parameter   | Type   | Required | Default | Description              |
| ----------- | ------ | -------- | ------- | ------------------------ |
| `eventType` | string | Yes      | —       | Event type to listen for |
| `state`     | string | No       | —       | Webhook state            |
| `url`       | string | Yes      | —       | Webhook callback URL     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "eventType": {
        "type": "string",
        "description": "Event type to listen for"
      },
      "state": {
        "type": "string",
        "description": "Webhook state"
      },
      "url": {
        "type": "string",
        "description": "Webhook callback URL"
      }
    },
    "required": [
      "PCID",
      "eventType",
      "url"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_delete\_content\_category

Delete a content category by ID

**Parameters:**

| Parameter | Type    | Required | Default | Description |
| --------- | ------- | -------- | ------- | ----------- |
| `id`      | integer | Yes      | —       | Category ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Category ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_delete\_webhook

Delete a webhook

**Parameters:**

| Parameter | Type    | Required | Default | Description |
| --------- | ------- | -------- | ------- | ----------- |
| `id`      | integer | Yes      | —       | Webhook ID  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Webhook ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_account\_balance

Get email and SMS credit balance

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation

Get automation details by ID

**Parameters:**

| Parameter | Type    | Required | Default | Description   |
| --------- | ------- | -------- | ------- | ------------- |
| `id`      | integer | Yes      | —       | Automation ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation\_activation

Get automation activation status

**Parameters:**

| Parameter | Type    | Required | Default | Description   |
| --------- | ------- | -------- | ------- | ------------- |
| `id`      | integer | Yes      | —       | Automation ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation\_contacts\_ended

Get contacts that finished an automation

**Parameters:**

| Parameter  | Type    | Required | Default | Description                          |
| ---------- | ------- | -------- | ------- | ------------------------------------ |
| `id`       | integer | Yes      | —       | Automation ID                        |
| `FromDate` | string  | No       | —       | Start date for filtering (inclusive) |
| `ToDate`   | string  | No       | —       | End date for filtering (inclusive)   |
| `Filter`   | string  | No       | —       | The filter value                     |
| `Page`     | integer | No       | —       | Page number for pagination           |
| `Limit`    | integer | No       | —       | Maximum number of results to return  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      },
      "FromDate": {
        "type": "string",
        "description": "Start date for filtering (inclusive)"
      },
      "ToDate": {
        "type": "string",
        "description": "End date for filtering (inclusive)"
      },
      "Filter": {
        "type": "string",
        "description": "The filter value"
      },
      "Page": {
        "type": "integer",
        "description": "Page number for pagination"
      },
      "Limit": {
        "type": "integer",
        "description": "Maximum number of results to return"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation\_contacts\_started

Get contacts that started an automation

**Parameters:**

| Parameter  | Type    | Required | Default | Description                          |
| ---------- | ------- | -------- | ------- | ------------------------------------ |
| `id`       | integer | Yes      | —       | Automation ID                        |
| `FromDate` | string  | No       | —       | Start date for filtering (inclusive) |
| `ToDate`   | string  | No       | —       | End date for filtering (inclusive)   |
| `Filter`   | string  | No       | —       | The filter value                     |
| `Page`     | integer | No       | —       | Page number for pagination           |
| `Limit`    | integer | No       | —       | Maximum number of results to return  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      },
      "FromDate": {
        "type": "string",
        "description": "Start date for filtering (inclusive)"
      },
      "ToDate": {
        "type": "string",
        "description": "End date for filtering (inclusive)"
      },
      "Filter": {
        "type": "string",
        "description": "The filter value"
      },
      "Page": {
        "type": "integer",
        "description": "Page number for pagination"
      },
      "Limit": {
        "type": "integer",
        "description": "Maximum number of results to return"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation\_design

Get complete automation design

**Parameters:**

| Parameter | Type    | Required | Default | Description   |
| --------- | ------- | -------- | ------- | ------------- |
| `id`      | integer | Yes      | —       | Automation ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation\_overview\_report

Get summary report for an automation

**Parameters:**

| Parameter | Type    | Required | Default | Description   |
| --------- | ------- | -------- | ------- | ------------- |
| `id`      | integer | Yes      | —       | Automation ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_automation\_trigger\_info

Get automation trigger information

**Parameters:**

| Parameter | Type    | Required | Default | Description   |
| --------- | ------- | -------- | ------- | ------------- |
| `id`      | integer | Yes      | —       | Automation ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_contact\_fields

Get account contact fields filtered by type

**Parameters:**

| Parameter    | Type   | Required | Default | Description              |
| ------------ | ------ | -------- | ------- | ------------------------ |
| `FieldsType` | string | No       | —       | Type of fields to filter |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "FieldsType": {
        "type": "string",
        "description": "Type of fields to filter"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_contact\_growth\_report

Get daily contact growth metrics (active/inactive)

**Parameters:**

| Parameter  | Type   | Required | Default | Description                      |
| ---------- | ------ | -------- | ------- | -------------------------------- |
| `FromDate` | string | No       | —       | Start date                       |
| `ToDate`   | string | No       | —       | End date (default 3 months back) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "FromDate": {
        "type": "string",
        "description": "Start date"
      },
      "ToDate": {
        "type": "string",
        "description": "End date (default 3 months back)"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_content\_category

Get a specific content category by ID

**Parameters:**

| Parameter | Type    | Required | Default | Description |
| --------- | ------- | -------- | ------- | ----------- |
| `id`      | integer | Yes      | —       | Category ID |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Category ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_executive\_report

Get executive-level account reports

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_sending\_profiles

Get email sending profiles configured for account

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_sms\_sending\_profiles

Get SMS sending profiles for account

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_get\_webhook

Get a specific webhook by ID

**Parameters:**

| Parameter | Type    | Required | Default | Description |
| --------- | ------- | -------- | ------- | ----------- |
| `id`      | integer | Yes      | —       | Webhook ID  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Webhook ID"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_list\_automations

Get account automations

**Parameters:**

| Parameter   | Type    | Required | Default | Description                         |
| ----------- | ------- | -------- | ------- | ----------------------------------- |
| `StateType` | string  | No       | —       | Filter by state                     |
| `Page`      | integer | No       | —       | Page number for pagination          |
| `Limit`     | integer | No       | —       | Maximum number of results to return |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "StateType": {
        "type": "string",
        "description": "Filter by state"
      },
      "Page": {
        "type": "integer",
        "description": "Page number for pagination"
      },
      "Limit": {
        "type": "integer",
        "description": "Maximum number of results to return"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_list\_content\_categories

Get all account content categories

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_list\_webhooks

Get account webhooks

**Parameters:**

| Parameter    | Type   | Required | Default | Description |
| ------------ | ------ | -------- | ------- | ----------- |
| `EventType`  | string | No       | —       | Event Type  |
| `StateType`  | string | No       | —       | State Type  |
| `TargetType` | string | No       | —       | Target Type |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "EventType": {
        "type": "string",
        "description": "Event Type"
      },
      "StateType": {
        "type": "string",
        "description": "State Type"
      },
      "TargetType": {
        "type": "string",
        "description": "Target Type"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_update\_automation\_activation

Activate or deactivate an automation

**Parameters:**

| Parameter | Type    | Required | Default | Description                             |
| --------- | ------- | -------- | ------- | --------------------------------------- |
| `id`      | integer | Yes      | —       | Automation ID                           |
| `active`  | boolean | Yes      | —       | Whether the automation should be active |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Automation ID"
      },
      "active": {
        "type": "boolean",
        "description": "Whether the automation should be active"
      }
    },
    "required": [
      "PCID",
      "id",
      "active"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_update\_content\_category

Update a content category

**Parameters:**

| Parameter     | Type    | Required | Default | Description           |
| ------------- | ------- | -------- | ------- | --------------------- |
| `id`          | integer | Yes      | —       | Category ID           |
| `description` | string  | No       | —       | The description value |
| `name`        | string  | No       | —       | The name value        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Category ID"
      },
      "description": {
        "type": "string",
        "description": "The description value"
      },
      "name": {
        "type": "string",
        "description": "The name value"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## activetrail\_management\_update\_webhook

Update a webhook

**Parameters:**

| Parameter   | Type    | Required | Default | Description     |
| ----------- | ------- | -------- | ------- | --------------- |
| `id`        | integer | Yes      | —       | Webhook ID      |
| `eventType` | string  | No       | —       | Event Type      |
| `state`     | string  | No       | —       | The state value |
| `url`       | string  | No       | —       | The url value   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Webhook ID"
      },
      "eventType": {
        "type": "string",
        "description": "Event Type"
      },
      "state": {
        "type": "string",
        "description": "The state value"
      },
      "url": {
        "type": "string",
        "description": "The url value"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>
