You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Perform an Escrow Key Unlock against Apple's API. Uses the APNs certificate of the provided topic for mTLS authentication. Note that despite all parameters being in the HTTP body (form) this endpoint moves the appropriate parameters to the URL query parameters per Apple's documentation. The response body, status, and headers are handed straight through from the Apple endpoint."
@@ -228,6 +281,18 @@ components:
228
281
application/json:
229
282
schema:
230
283
$ref: '#/components/schemas/APIResult'
284
+
QueueAPIResultSomeFailed:
285
+
description: Some requests succeeded and some failed. Returns JSON queue API response object including errors.
286
+
content:
287
+
application/json:
288
+
schema:
289
+
$ref: '#/components/schemas/QueueAPIResult'
290
+
QueueAPIResultAllFailed:
291
+
description: All requests failed. Returns JSON queue API response object including errors.
292
+
content:
293
+
application/json:
294
+
schema:
295
+
$ref: '#/components/schemas/QueueAPIResult'
231
296
schemas:
232
297
APIResult:
233
298
type: object
@@ -276,3 +341,44 @@ components:
276
341
format: date-time
277
342
description: Expiration date of the uploaded APNs certificate.
278
343
example: '2026-01-07T04:04:46Z'
344
+
QueuedCommandsResponse:
345
+
type: object
346
+
properties:
347
+
commands:
348
+
type: array
349
+
description: Array of queued MDM commands
350
+
items:
351
+
type: object
352
+
properties:
353
+
command_uuid:
354
+
type: string
355
+
format: uuid
356
+
example: 'fedd659e-fc3c-4e35-8bb1-c8f51ae542a5'
357
+
request_type:
358
+
type: string
359
+
example: 'ProfileList'
360
+
command:
361
+
type: string
362
+
format: byte
363
+
description: The full MDM command plist data, base64-encoded.
0 commit comments