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.
Server path: /sophos | Type: Application | PCID required: Yes
| Tool | Description |
|---|
sophos_list_endpoints | Retrieve a list of all registered endpoints in the Sophos Central account |
sophos_create_case | Create a new security investigation case based on detected threats or incidents |
sophos_list_device_groups | Retrieve a list of all device groups in Sophos Mobile |
sophos_create_device_group | Create a new device group to organize mobile devices in Sophos Mobile |
sophos_list_mobile_devices | Retrieve a list of all managed mobile devices in Sophos Mobile |
sophos_get_mobile_device | Retrieve detailed information for a specific mobile device |
sophos_create_mobile_device | Create a new mobile device entry in Sophos Mobile |
sophos_list_endpoints
Retrieve a list of all registered endpoints in the Sophos Central account
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
}
},
"required": [
"PCID"
]
}
sophos_create_case
Create a new security investigation case based on detected threats or incidents
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
name | string | Yes | — | Name of the security case |
severity | string | Yes | — | Severity level of the case |
description | string | Yes | — | Detailed description of the security case |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"name": {
"type": "string",
"description": "Name of the security case"
},
"severity": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
],
"description": "Severity level of the case"
},
"description": {
"type": "string",
"description": "Detailed description of the security case"
}
},
"required": [
"PCID",
"name",
"severity",
"description"
]
}
sophos_list_device_groups
Retrieve a list of all device groups in Sophos Mobile
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
}
},
"required": [
"PCID"
]
}
sophos_create_device_group
Create a new device group to organize mobile devices in Sophos Mobile
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
name | string | Yes | — | Name of the device group |
employeeCompliancePolicyId | string | No | — | Employee compliance policy ID |
corporateCompliancePolicyId | string | No | — | Corporate compliance policy ID |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"name": {
"type": "string",
"description": "Name of the device group"
},
"employeeCompliancePolicyId": {
"type": "string",
"description": "Employee compliance policy ID"
},
"corporateCompliancePolicyId": {
"type": "string",
"description": "Corporate compliance policy ID"
}
},
"required": [
"PCID",
"name"
]
}
sophos_list_mobile_devices
Retrieve a list of all managed mobile devices in Sophos Mobile
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
}
},
"required": [
"PCID"
]
}
sophos_get_mobile_device
Retrieve detailed information for a specific mobile device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
deviceId | string | Yes | — | ID of the mobile device |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"deviceId": {
"type": "string",
"description": "ID of the mobile device"
}
},
"required": [
"PCID",
"deviceId"
]
}
sophos_create_mobile_device
Create a new mobile device entry in Sophos Mobile
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
name | string | Yes | — | Name of the device |
ownershipType | string | Yes | — | Device ownership type |
platform | string | Yes | — | Device platform |
assignedPersonId | string | No | — | ID of the person assigned to the device |
email | string | No | — | Email address associated with the device |
groupId | string | No | — | ID of the device group to assign the device to |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"name": {
"type": "string",
"description": "Name of the device"
},
"ownershipType": {
"type": "string",
"enum": [
"corporate",
"personal"
],
"description": "Device ownership type"
},
"platform": {
"type": "string",
"enum": [
"iOS",
"Android"
],
"description": "Device platform"
},
"assignedPersonId": {
"type": "string",
"description": "ID of the person assigned to the device"
},
"email": {
"type": "string",
"description": "Email address associated with the device"
},
"groupId": {
"type": "string",
"description": "ID of the device group to assign the device to"
}
},
"required": [
"PCID",
"name",
"ownershipType",
"platform"
]
}