/sophos-central-mobile | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
sophos-central-mobile_create_mobile_device | Create mobile device |
sophos-central-mobile_create_mobile_device_group | Create mobile device group |
sophos-central-mobile_delete_device | Delete mobile device |
sophos-central-mobile_delete_device_group | Delete mobile device group |
sophos-central-mobile_get_device | Get mobile device details |
sophos-central-mobile_get_device_group | Get mobile device group |
sophos-central-mobile_list_mobile_device_groups | List mobile device groups |
sophos-central-mobile_list_mobile_devices | List mobile devices |
sophos-central-mobile_update_mobile_device | Update mobile device |
sophos-central-mobile_update_mobile_device_group | Update mobile device group |
sophos-central-mobile_create_mobile_device
Create mobile device Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | Device name |
osType | string | Yes | — | Operating system type |
owner | string | Yes | — | Device owner |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "Device name"
},
"osType": {
"type": "string",
"description": "Operating system type"
},
"owner": {
"type": "string",
"description": "Device owner"
}
},
"required": [
"PCID",
"name",
"osType",
"owner"
]
}
sophos-central-mobile_create_mobile_device_group
Create mobile device group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
description | string | No | — | Group description |
name | string | Yes | — | Group name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"description": {
"type": "string",
"description": "Group description"
},
"name": {
"type": "string",
"description": "Group name"
}
},
"required": [
"PCID",
"name"
]
}
sophos-central-mobile_delete_device
Delete mobile device Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
deviceId | string | Yes | — | Device ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"deviceId": {
"type": "string",
"description": "Device ID"
}
},
"required": [
"PCID",
"deviceId"
]
}
sophos-central-mobile_delete_device_group
Delete mobile device group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
groupId | string | Yes | — | Group ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"groupId": {
"type": "string",
"description": "Group ID"
}
},
"required": [
"PCID",
"groupId"
]
}
sophos-central-mobile_get_device
Get mobile device details Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
deviceId | string | Yes | — | Device ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"deviceId": {
"type": "string",
"description": "Device ID"
}
},
"required": [
"PCID",
"deviceId"
]
}
sophos-central-mobile_get_device_group
Get mobile device group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
groupId | string | Yes | — | Group ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"groupId": {
"type": "string",
"description": "Group ID"
}
},
"required": [
"PCID",
"groupId"
]
}
sophos-central-mobile_list_mobile_device_groups
List mobile device groups Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
pageSize | integer | No | — | Items per page |
page | integer | No | — | Page number |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"pageSize": {
"type": "integer",
"description": "Items per page"
},
"page": {
"type": "integer",
"description": "Page number"
}
},
"required": [
"PCID"
]
}
sophos-central-mobile_list_mobile_devices
List mobile devices Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
pageSize | integer | No | — | Items per page |
page | integer | No | — | Page number |
search | string | No | — | Search by device name |
osType | string | No | — | Filter by OS type |
complianceStatus | string | No | — | Filter by compliance status |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"pageSize": {
"type": "integer",
"description": "Items per page"
},
"page": {
"type": "integer",
"description": "Page number"
},
"search": {
"type": "string",
"description": "Search by device name"
},
"osType": {
"type": "string",
"description": "Filter by OS type"
},
"complianceStatus": {
"type": "string",
"description": "Filter by compliance status"
}
},
"required": [
"PCID"
]
}
sophos-central-mobile_update_mobile_device
Update mobile device Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
deviceId | string | Yes | — | Device ID |
groupId | string | No | — | Group to assign |
name | string | No | — | Updated device name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"deviceId": {
"type": "string",
"description": "Device ID"
},
"groupId": {
"type": "string",
"description": "Group to assign"
},
"name": {
"type": "string",
"description": "Updated device name"
}
},
"required": [
"PCID",
"deviceId"
]
}
sophos-central-mobile_update_mobile_device_group
Update mobile device group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
groupId | string | Yes | — | Group ID |
description | string | No | — | Updated description |
name | string | No | — | Updated group name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"groupId": {
"type": "string",
"description": "Group ID"
},
"description": {
"type": "string",
"description": "Updated description"
},
"name": {
"type": "string",
"description": "Updated group name"
}
},
"required": [
"PCID",
"groupId"
]
}

