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: /microsoft-active-directory-devices | Type: Application | PCID required: Yes
microsoft_active_directory_devices_delete_device
Delete a device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
device_id | string | Yes | — | Device Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"device_id": {
"type": "string",
"description": "Device Id"
}
},
"required": [
"PCID",
"device_id"
]
}
microsoft_active_directory_devices_get_device
Get a device by ID
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
device_id | string | Yes | — | Device object ID (GUID) |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"device_id": {
"type": "string",
"description": "Device object ID (GUID)"
}
},
"required": [
"PCID",
"device_id"
]
}
microsoft_active_directory_devices_get_managed_device
Get an Intune managed device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
managed_device_id | string | Yes | — | Managed Device Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"managed_device_id": {
"type": "string",
"description": "Managed Device Id"
}
},
"required": [
"PCID",
"managed_device_id"
]
}
microsoft_active_directory_devices_list_device_registered_owners
List registered owners of a device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
device_id | string | Yes | — | Device Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"device_id": {
"type": "string",
"description": "Device Id"
}
},
"required": [
"PCID",
"device_id"
]
}
microsoft_active_directory_devices_list_device_registered_users
List registered users of a device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
device_id | string | Yes | — | Device Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"device_id": {
"type": "string",
"description": "Device Id"
}
},
"required": [
"PCID",
"device_id"
]
}
microsoft_active_directory_devices_list_devices
List devices
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
$filter | string | No | — | The $filter value |
$select | string | No | — | The $select value |
$top | integer | No | — | The $top value |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"$filter": {
"type": "string",
"description": "The $filter value"
},
"$select": {
"type": "string",
"description": "The $select value"
},
"$top": {
"type": "integer",
"description": "The $top value"
}
},
"required": [
"PCID"
]
}
microsoft_active_directory_devices_list_managed_devices
List Intune managed devices
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
$filter | string | No | — | The $filter value |
$select | string | No | — | The $select value |
$top | integer | No | — | The $top value |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"$filter": {
"type": "string",
"description": "The $filter value"
},
"$select": {
"type": "string",
"description": "The $select value"
},
"$top": {
"type": "integer",
"description": "The $top value"
}
},
"required": [
"PCID"
]
}
microsoft_active_directory_devices_retire_managed_device
Retire an Intune managed device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
managed_device_id | string | Yes | — | Managed Device Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"managed_device_id": {
"type": "string",
"description": "Managed Device Id"
}
},
"required": [
"PCID",
"managed_device_id"
]
}
microsoft_active_directory_devices_sync_managed_device
Force a managed device to sync with Intune
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
managed_device_id | string | Yes | — | Managed Device Id |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"managed_device_id": {
"type": "string",
"description": "Managed Device Id"
}
},
"required": [
"PCID",
"managed_device_id"
]
}
microsoft_active_directory_devices_wipe_managed_device
Wipe an Intune managed device
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
managed_device_id | string | Yes | — | Managed Device Id |
keepEnrollmentData | boolean | No | — | Keep Enrollment Data |
keepUserData | boolean | No | — | Keep User Data |
macOsUnlockCode | string | No | — | Mac Os Unlock Code |
persistEsimDataPlan | boolean | No | — | Persist Esim Data Plan |
useProtectedWipe | boolean | No | — | Use Protected Wipe |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"managed_device_id": {
"type": "string",
"description": "Managed Device Id"
},
"keepEnrollmentData": {
"type": "boolean",
"description": "Keep Enrollment Data"
},
"keepUserData": {
"type": "boolean",
"description": "Keep User Data"
},
"macOsUnlockCode": {
"type": "string",
"description": "Mac Os Unlock Code"
},
"persistEsimDataPlan": {
"type": "boolean",
"description": "Persist Esim Data Plan"
},
"useProtectedWipe": {
"type": "boolean",
"description": "Use Protected Wipe"
}
},
"required": [
"PCID",
"managed_device_id"
]
}