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
Copy file name to clipboardExpand all lines: openapi-specs/access/browser-mgmt/PrismaAccess-Browser-Management.yaml
+320-3Lines changed: 320 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ info:
9
9
\ the [Prisma Browser User Interface](https://docs.paloaltonetworks.com/prisma-access-browser).\n\
10
10
These APIs use the common SASE authentication mechanism and base URL. See the\
11
11
\ [Prisma SASE API Get Started](https://pan.dev/sase/docs/getstarted/) guide for\
12
-
\ more information. This Open API spec file was created on December 11, 2025.\
13
-
\ \xA9 2025 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark\
14
-
\ of Palo Alto Networks. A list of our trademarks can be found at [https://www.paloaltonetworks.com/company/trademarks.html](https://www.paloaltonetworks.com/company/trademarks.html).\
12
+
\ more information. This Open API spec file was created on January 02, 2026. \xA9\
13
+
\ 2026 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark of\
14
+
\ Palo Alto Networks. A list of our trademarks can be found at [https://www.paloaltonetworks.com/company/trademarks.html](https://www.paloaltonetworks.com/company/trademarks.html).\
15
15
\ All other marks mentioned herein may be trademarks of their respective companies."
16
16
security:
17
17
- BearerAuth: []
@@ -26,6 +26,78 @@ components:
26
26
type: string
27
27
message:
28
28
type: string
29
+
missingDeviceIds:
30
+
type: array
31
+
items:
32
+
type: string
33
+
description: List of device IDs that were not found (only present for device
34
+
not found errors)
35
+
DeviceStatusChangeRequest:
36
+
type: object
37
+
properties:
38
+
deviceIds:
39
+
type: array
40
+
items:
41
+
type: string
42
+
description: List of device IDs
43
+
minItems: 1
44
+
required:
45
+
- deviceIds
46
+
DeviceArchiveResponse:
47
+
type: object
48
+
properties:
49
+
archivedDeviceIds:
50
+
type: array
51
+
items:
52
+
type: string
53
+
description: List of device IDs that were archived
54
+
message:
55
+
type: string
56
+
example: 3 devices archived successfully
57
+
DeviceRestoreResponse:
58
+
type: object
59
+
properties:
60
+
restoredDeviceIds:
61
+
type: array
62
+
items:
63
+
type: string
64
+
description: List of device IDs that were restored
65
+
message:
66
+
type: string
67
+
example: 3 devices restored successfully
68
+
DeviceSuspendResponse:
69
+
type: object
70
+
properties:
71
+
suspendedDeviceIds:
72
+
type: array
73
+
items:
74
+
type: string
75
+
description: List of device IDs that were suspended
76
+
message:
77
+
type: string
78
+
example: 3 devices suspended successfully
79
+
DeviceResumeResponse:
80
+
type: object
81
+
properties:
82
+
resumedDeviceIds:
83
+
type: array
84
+
items:
85
+
type: string
86
+
description: List of device IDs that were resumed
87
+
message:
88
+
type: string
89
+
example: 3 devices resumed successfully
90
+
DeviceDeleteResponse:
91
+
type: object
92
+
properties:
93
+
deletedDeviceIds:
94
+
type: array
95
+
items:
96
+
type: string
97
+
description: List of device IDs that were deleted
98
+
message:
99
+
type: string
100
+
example: 3 devices deleted successfully
29
101
Order:
30
102
type: string
31
103
description: The sort order
@@ -851,6 +923,13 @@ components:
851
923
type: string
852
924
format: string
853
925
description: External identifier
926
+
status:
927
+
type: string
928
+
description: Device status
929
+
enum:
930
+
- active
931
+
- archived
932
+
- suspended
854
933
firstSeen:
855
934
type: string
856
935
format: date-time
@@ -988,6 +1067,7 @@ components:
988
1067
$ref: '#/components/schemas/User'
989
1068
required:
990
1069
- id
1070
+
- status
991
1071
- firstSeen
992
1072
- lastSeen
993
1073
- osType
@@ -2465,6 +2545,225 @@ paths:
2465
2545
type: string
2466
2546
tags:
2467
2547
- Devices
2548
+
/seb-api/v1/devices/archive:
2549
+
post:
2550
+
summary: Archive Devices
2551
+
description: Archive one or more devices by changing their status to archived.
0 commit comments