GET
/v1/organizations/:organizationId/mdm/policies/
Copy to clipboard
List device management policies
Required Permission: mdm.global.policy.list
Returns a paginated list of policies from Android, Apple, and Windows platforms accessible within the organization context.
Request
Add parameter in header
authorization
Example:
Authorization: Bearer <token>
organizationId
string
required
page
integer
optional
limit
integer
optional
sort
string
optional
type
string
optional
name
string
optional
policyId
string
optional
search
string
optional
segmentId
integer
optional
expandTo
string
optional
Responses
200 Response
application/json
status
boolean
optional
data
object
optional
items
array [object]
optional
id
string
optional
type
string
optional
name
string
optional
version
integer
optional
counts
object
optional
devices
integer
optional
applications
integer
optional
properties
integer
optional
targetType
string
optional
updatedAt
string
optional
createdAt
string
optional
agentConfiguration
object
optional
allowLocation
boolean
optional
allowLocationMacos
boolean
optional
allowPackageTime
boolean
optional
allowPackageTransfer
boolean
optional
allowDeviceInfoBatteryUsage
boolean
optional
allowDeviceInfoBluetooth
boolean
optional
allowDeviceInfoSystemInfo
boolean
optional
totalDocs
integer
optional
{
"status": true,
"data": {
"items": [
{
"id": "507f1f77bcf86cd799439011",
"type": "android",
"name": "Corporate Security Baseline Policy",
"version": 3,
"counts": {
"devices": 247,
"applications": 12,
"properties": 38
},
"targetType": "device",
"updatedAt": "2026-02-10T14: 30:00Z",
"createdAt": "2026-02-01T09: 15:00Z",
"agentConfiguration": {
"allowLocation": true,
"allowLocationMacos": false,
"allowPackageTime": true,
"allowPackageTransfer": false,
"allowDeviceInfoBatteryUsage": true,
"allowDeviceInfoBluetooth": true,
"allowDeviceInfoSystemInfo": true
}
}
],
"totalDocs": 0
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
404 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}