[{"label":"Latest (v1.0)","version":"latest"}]
csp
Create Custom Group In Organization By Organization ID
DescriptionCreate a new custom group in organization.
Access Policy
Role | User Accounts | Service Accounts (Client Credentials Applications) |
---|---|---|
Organization Owner | ✔️ | ✔️ |
Request
URLURL
https://{api_host}/csp/gateway/am/api/orgs/{orgId}/groups
Path Parameters
Path Parameters
string
orgId
Required
Unique identifier (GUID) of the organization.
Parameter Serialization Style:
simple Explode:false
Request Body
Request Body
CreateCustomGroupRequest
of mimetype application/json
Required
{
"name": "string"
}
string as ^[^@]+$
name
Required
Name of the custom group to be created.
string
description
Optional
Description of the custom group to be created.
Authentication
This operation uses the following authentication methods.
Response
Response
Response BodyResponse Body
200 OK returns
IdDto
of type application/json
{
"id": "string"
}
string
id
Optional
The unique identifier of the resource.
Errors
400
Missing required parameters or invalid parameters in request body returns a 400 (bad request) status code
Code Samples
Code Samples
cURL Command
curl -X POST -H "Content-Type: application/json" -d '{"description":"string","name":"string"}' https://{api_host}/csp/gateway/am/api/orgs/{orgId}/groups
Vendor Extensions
This operation contains the following vendor extensions defined in the spec:
x-required-roles: org_owner
x-slo-tier: TIER2
[{"label":"Latest (v1.0)","version":"latest"}]
csp