User Group - Flexible Security Service API References (1.4.0)

Download OpenAPI specification:Download

manage user groups (Paloalto user groups)

Authentication

X-Auth-Token

Security Scheme Type API Key
Header parameter name: {keystone_token}

user-group

Get User Groups

Get user group resources.

Authorizations:
query Parameters
id
string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$

The ID of the resource.

name
string ^[a-zA-Z0-9-_]{1,31}$

A name of the resource.

fraGroupId
string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$

ID of the FRA group to which the resource belongs.

serviceGroupId
string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$

ID of the service group to which the resource belongs.

tenantId
string ^[a-fA-F0-9]{32}$

ID of the tenant to which the resource belongs.

includeUsers
boolean
Default: false

Whether to include users field in the response.

limit
integer [ 1 .. 100 ]
Default: 100

Maximum number of user groups to return.

offset
integer >= 0
Default: 0

Offset for pagination.

orderBy
string
Default: "name"
Value: "name"

Field to sort by.

order
string
Default: "asc"
Enum: "asc" "desc"

Sort direction.

Responses

200

OK

400

Bad Request

401

Unauthorized

500

Internal Server Error

503

Service Unavailable

get/v1/user-groups
https://api.ntt.com/fsec-ers/v1/user-groups

Response samples

Content type
application/json
Example
Copy
Expand all Collapse all
{
  • "userGroups":
    [
    ],
  • "pagination":
    {
    },
  • "truncation":
    {
    }
}

Create User Groups

Create multiple user group resources at once. Each FRA group can have up to 100 user groups including the predefined Customer_Default group, so up to 99 user groups can be created by request.

Authorizations:
Request Body schema: application/json
userGroups
required
object (UserGroupCreateRequest)

Responses

202

Accepted

400

Bad Request

401

Unauthorized

409

Conflict

500

Internal Server Error

503

Service Unavailable

post/v1/user-groups
https://api.ntt.com/fsec-ers/v1/user-groups

Request samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroups":
    {
    }
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroups":
    {
    }
}

Update User Groups

Update multiple user group resources at once. For predefined user groups such as Customer_Default, only users can be updated; name and description cannot be changed.

Authorizations:
Request Body schema: application/json
userGroups
required
object (UserGroupUpdateRequest)

Responses

202

Accepted

400

Bad Request

401

Unauthorized

404

Not Found

409

Conflict

500

Internal Server Error

503

Service Unavailable

patch/v1/user-groups
https://api.ntt.com/fsec-ers/v1/user-groups

Request samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroups":
    {
    }
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroups":
    {
    }
}

Delete User Groups

Delete multiple user group resources at once.

Authorizations:
Request Body schema: application/json
userGroups
required
object (UserGroupDeleteRequest)

Responses

202

Accepted

400

Bad Request

401

Unauthorized

404

Not Found

409

Conflict

500

Internal Server Error

503

Service Unavailable

post/v1/user-groups/delete
https://api.ntt.com/fsec-ers/v1/user-groups/delete

Request samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroups":
    {
    }
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroups":
    {
    }
}

Get User Group

Get user group resource.

Authorizations:
path Parameters
group_id
required
string ^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$

Responses

200

OK

400

Bad Request

401

Unauthorized

404

Not Found

500

Internal Server Error

503

Service Unavailable

get/v1/user-groups/{group_id}
https://api.ntt.com/fsec-ers/v1/user-groups/{group_id}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "userGroup":
    {
    }
}