Delete a specific security group by security group name
delete
/PASService/rest/services/v1/securityGroups/{securityGroupName}
Deletes a securitygroup of specific name
Request
Path Parameters
-
securityGroupName(required): string
SecurityGroupName
There's no request body for this operation.
Back to TopResponse
204 Response
This operation deletes a specific security group by security group name successfully.
Examples
This example describes how to get a specific securityGroup by the securityGroupName.
Example cURL Command
Use the following cURL command to submit a request on the REST resource:
curl -X DELETE \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \ -L "http://server:port/PASService/rest/services/v1/securityGroups/Group1" \