Mobile devices
SAM: Mobile devices (1.0.0)
Download OpenAPI specification:Download
API for interacting with mobile devices.
Get mobile device details
Returns the details of a given mobile device.
Authorizations:
BearerAuth
path Parameters
id required | string The unique ID of the mobile device for which details will be returned. |
Responses
Response samples
- 200
- 400
- 404
- 500
Content type
application/json
{- "id": "e288f665-0f7f-4c4d-8725-1f87427d8071",
- "name": "Sammy's iPhone",
- "organizationId": "8b4f2d90-99e7-408a-bad6-68d491e94dba",
- "manufacturer": "Apple",
- "manufacturerWebsite": "www.apple.com",
- "model": "iPhone 14 pro",
- "operatingSystem": "iOS",
- "phoneNumber": "17896541236",
- "status": "Active",
- "isTablet": true,
- "ipAddresses": "1.1.1.1",
- "isAutoEditingEnabled": true,
- "isQuarantineManagementDisabled": true,
- "quarantineDate": "2019-08-24T14:15:22Z",
- "clientConfigurationName": "Microsoft Intune",
- "clientInstallDate": "2019-08-24T14:15:22Z",
- "clientSiteName": "Laurel_MI",
- "clientVersion": "5.39",
- "scannerVersion": "Data Collector for MicrosoftIntune (version 5.39)",
- "scanIdentifier": "5.39",
- "notes": "Invoice: I342-9872345",
- "securityCode": "635241",
- "hasExchangeProfile": true,
- "imei": "356496178244025",
- "imsi": "954470084188744",
- "networkType": "4G",
- "operator": "AT&T",
- "operatorCountry": "North America",
- "isRoamingEnabled": true,
- "biosSerialNumber": "GR4CY88SPFT",
- "architecture": "ARM",
- "_links": [
- {
- "href": "api/sam/estate/v1/...",
- "rel": "self",
- "method": "GET"
}
]
}
Get mobile devices
Returns a collection of mobile devices.
Authorizations:
BearerAuth
query Parameters
page_size | integer <= 1000 Default: 100 The maximum number of items in the response. |
page_number | integer <int64> Default: 1 The page number. |
filter | string Example: filter=status -eq "active" For more information on the available operators and which data types those operators work on, see Filter API call results. |
Responses
Response samples
- 200
- 400
- 500
Content type
application/json
{- "pagination": {
- "page_size": 100,
- "page_number": 1
}, - "items": [
- {
- "id": "",
- "name": "Sammy's iPhone",
- "organizationId": "8b4f2d90-99e7-408a-bad6-68d491e94dba",
- "manufacturer": "Apple",
- "model": "iPhone 14 Pro",
- "operatingSystem": "iOS",
- "phoneNumber": "789-654-1236",
- "status": "Active",
- "isTablet": true,
- "_links": [
- {
- "href": "api/sam/estate/v1/...",
- "rel": "self",
- "method": "GET"
}
]
}
], - "_links": [
- {
- "href": "api/sam/estate/v1/...",
- "rel": "self",
- "method": "GET"
}
]
}