Palo Alto Networks Group Resource API API
The Group Resource API API from Palo Alto Networks — 5 operation(s) for group resource api.
The Group Resource API API from Palo Alto Networks — 5 operation(s) for group resource api.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/palo-alto-networks-group-resource-api-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: SASE 5G Manage Service Group Resource API
version: '1.0'
description: "The SASE 5G Management Service provides the administrative framework required to provision, \nconfigure, and oversee 5G security infrastructure within the Strata Cloud Manager (SCM) ecosystem. \nArchitects and administrators utilize these APIs during the activation and lifecycle management \nphases to bridge enterprise 5G networks with Prisma Access security.\n\nBy leveraging these endpoints, organizations implement robust hardware-to-tenant mapping using \nIMSI and IMEI identifiers, ensuring precise traffic attribution and policy enforcement. \nThe service manages critical control plane components—including certificate handling and \nRadius server integration—directly through the SCM management plane. This centralized \napproach allows technical teams to scale 5G connectivity across global compute regions \nwhile maintaining granular visibility into subscriber groups and regional interconnect health. This spec was created on February 11, 2026. © 2026 Palo Alto Networks, Inc."
servers:
- url: https://stratacloudmanager.paloaltonetworks.com
security:
- JWT: []
tags:
- name: Group Resource API
paths:
/mt/manage/5g/userGroup:
post:
tags:
- Group Resource API
summary: Create Subscriber Group
description: "Establishes a named group of Tenant UE identities for bulk security policy \napplication. Security leads define these groups to manage sets of subscribers \nas single entities within the 5G management plane for simplified administration."
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TenantGroupInfo'
responses:
'200':
description: Success
'400':
description: Bad Request
'404':
description: Data Not Found
'500':
description: Server Error
operationId: PostMtManage5gUsergroup
/mt/manage/5g/userGroup/list:
post:
tags:
- Group Resource API
summary: Retrieve Tenant Groups
description: "Lists all named user groups associated with a specific tenant. Administrators \ncall this during policy enforcement to verify existing groups and ensure \nsecurity assignments apply to the correct sets of 5G subscribers."
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TenantGroupInfoListInput'
responses:
'200':
description: Success
'204':
description: No Content
'400':
description: Bad Request
'404':
description: Data Not Found
'500':
description: Server Error
operationId: PostMtManage5gUsergroupList
/mt/manage/5g/userGroup/{groupId}:
get:
tags:
- Group Resource API
summary: Fetch Group Members
description: "Returns the specific identity IDs belonging to a designated subscriber group. \nPolicy auditors verify these memberships to ensure individual devices are subject \nto the correct group security rules within the management plane."
parameters:
- name: groupId
in: path
required: true
schema:
type: string
responses:
'200':
description: Success
'400':
description: Bad Request
'404':
description: Data Not Found
'500':
description: Server Error
operationId: GetMtManage5gUsergroupBy_groupid
/mt/manage/5g/userGroup/{group_id}:
put:
tags:
- Group Resource API
summary: Modify Group Membership
description: "Updates the name or identity list for an existing user group. Administrators \nuse this to adjust group memberships dynamically as subscribers are added or \nremoved from service tiers or organizational units."
parameters:
- name: group_id
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TenantGroupInfo'
responses:
'200':
description: Success
'400':
description: Bad Request
'404':
description: Data Not Found
'500':
description: Server Error
operationId: PutMtManage5gUsergroupBy_group_id
/mt/manage/5g/userGroup/{identity_id}:
delete:
tags:
- Group Resource API
summary: Remove User Group
description: "Permanently deletes a user group definition. This action is typically taken \nwhen a specific service level or grouping strategy is no longer required for \nthe tenant, ensuring the management plane remains clean and accurate."
parameters:
- name: identity_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Success
'400':
description: Bad Request
'404':
description: Data Not Found
'500':
description: Server Error
operationId: DeleteMtManage5gUsergroupBy_identity_id
components:
schemas:
TenantGroupInfo:
type: object
properties:
tsg_id:
type: string
identity_id:
type: array
items:
type: string
group_name:
type: string
TenantGroupInfoListInput:
type: object
properties:
tsg_id:
type: string
group_id:
type: string