openapi: 3.2.0 info: title: Prisma Browser for MSP Summary API API version: '1.0' description: "The Prisma Browser for MSP API provides a suite of endpoints to automate the management of security services for the SMB market. \nThis API allows developers to programmatically create and configure new tenants, manage license allocation, and retrieve detailed security reports on blocked malware, \nmalicious websites, and unauthorized extensions. By using these services, MSPs can integrate multi-tenant visibility and lifecycle management directly into their \nown dashboards or third-party platforms like ServiceNow. This Open API spec file was created on February 23, 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." tags: - name: Summary API paths: /mt/pab/summary: post: summary: Get summary count of configured users description: Retrieves the total count of configured users for the specified region. operationId: PostMtPabSummary responses: '200': description: Successfully retrieved summary count content: application/json: {} '400': description: Invalid request payload '404': description: Region not found '500': description: Internal server error parameters: [] tags: - Summary API requestBody: description: Region information for the summary request content: application/json: examples: Americas Region: description: Request summary for Americas region value: region: americas US Region: description: Request summary for US region value: region: us schema: $ref: '#/components/schemas/RegionRequest' required: true security: - authKey: [] /mt/pab/summary/cie: post: summary: Get Cloud Identity Engine summary description: Retrieves Cloud Identity Engine (CIE) summary data for the specified region. operationId: PostMtPabSummaryCie responses: '200': description: Successfully retrieved CIE summary content: application/json: {} '400': description: Invalid request payload '404': description: Region not found '500': description: Internal server error parameters: [] tags: - Summary API requestBody: description: Region information for the CIE summary request content: application/json: examples: Americas Region: description: Request CIE summary for Americas region value: region: americas schema: $ref: '#/components/schemas/RegionRequest' required: true security: - authKey: [] /mt/pab/summary/tenants: post: summary: Get tenant summary data description: Retrieves summary information for all tenants in the specified region. operationId: PostMtPabSummaryTenants responses: '200': description: Successfully retrieved tenant summary content: application/json: {} '400': description: Invalid request payload '404': description: Region not found '500': description: Internal server error parameters: [] tags: - Summary API requestBody: description: Region information for the tenant summary request content: application/json: examples: US Region: description: Request tenant summary for US region value: region: us schema: $ref: '#/components/schemas/RegionRequest' required: true security: - authKey: [] components: schemas: RegionRequest: type: object required: - region examples: - region: americas description: Request payload for region-based operations properties: region: type: string minLength: 1 examples: - americas description: 'SLS region identifier. Valid values: americas (us), europe (eu), jp, uk, in, sg, ca, id, au, de' securitySchemes: authKey: {}