openapi: 3.2.0 info: title: Prisma Browser Management Console Public Configuration Management API version: 1.0.0 description: This Open API spec file was created on May 06, 2026. © 2026 Palo Alto Networks, Inc. Palo Alto Networks is a registered trademark 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). All other marks mentioned herein may be trademarks of their respective companies. security: - BearerAuth: [] tags: - name: Configuration Management paths: /seb-api/v1/configuration-management/draft/publish: post: summary: Publish Draft description: Create the publish details through this Application Programming Interface endpoint. operationId: PostSeb-apiV1Configuration-managementDraftPublish responses: '201': description: Active version was created successfully '400': description: Bad request content: application/json: schema: type: object properties: errorResponse: $ref: '#/components/schemas/ErrorResponse' '403': description: Forbidden '409': description: Draft contains no changes, No Active version was created content: application/json: schema: type: object properties: message: type: string description: info message example: No pending changes found in the current draft '500': description: Internal server error '501': description: Draft Mode is not supported content: application/json: schema: type: object properties: message: type: string description: info message example: Draft mode is not supported parameters: [] tags: - Configuration Management requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: Provide description to describe this version maxLength: 255 components: schemas: ErrorResponse: type: object required: - message properties: error: type: string message: type: string missingDeviceIds: type: array items: type: string description: List of device IDs that were not found (only present for device not found errors) missingUserIds: type: array items: type: string description: List of user IDs that were not found (only present for user not found errors) securitySchemes: BearerAuth: type: http scheme: bearer bearerFormat: JWT description: Enter your JWT Bearer token to authorize.