Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added missing permissions

Groups can be accessed and modified through this API using four services: GET, POST, PUT, and PATCH. These four services allow for the retrieval, creation, complete update, and partial update of groups.

...

Object TypeAction Type
PROJECTPAGEVIEW
APPROVALREAD, UPDATE
WINDOWREAD, UPDATE
NOTIFICATIONREAD, UPDATE, DELETE
WORKFLOWREAD, UPDATE
REPORTREAD
ENVINSTANCEREAD, UPDATE
ENVIRONMENTREAD, UPDATE
INSTANCEREAD, UPDATE
ENDPOINTREAD, UPDATE
SCHEDULEDTASKREAD, UPDATE
PLUGINREAD, UPLOAD
PROPERTYSETREAD
DEFAULTSREAD, UPDATE
FLEXFIELDSREAD, UPDATE
TEMPLATEREAD, UPDATE
USERREAD
GROUPREAD
TESTTOOLREAD, UPDATE
TESTTYPEREAD, UPDATE
ISSUETRACKINGSYSTEMREAD, UPDATE
CHANGEMANAGEMENTSYSTEMREAD, UPDATE
RELEASEREAD, UPDATE, CREATESNAPSHOT, CONFIGUREPROJECTLIST, CONFIGUREPIPLINE, CONFIGURECMS, MANAGELIFECYCLE, GRANTPERMISSIONS
PIPELINE

READ, UPDATE

OBJECTTYPE

READ, UPDATE

CLOUDACCOUNTREAD, UPDATE
ARTIFACTREPOACCOUNTREAD, UPDATE
CISERVERACCOUNTREAD, UPDATE
ANALYSISTOOLACCOUNTREAD, UPDATE
OTHERTOOLSACCOUNTREAD, UPDATE
ACCOUNTPROVIDERREAD, UPDATE
REALMREAD
CREDENTIALREAD, UPDATE, DELETE
CREDENTIALSTOREREAD
CREDENTIALSTOREPROVIDERREAD
WEBHOOKFUNCTIONREAD, UPDATE, DELETE
WEBHOOKPROVIDERREAD, UPDATE
WEBHOOKMESSAGEREAD, VIEWLOGS, VIEWCONTENT, EXECUTE

GET

There are two implementations of GET. One will find a group with the given Id and return the JSON representation of the group . The other will find a list of groups matching the parameters supplied to it.

...

GET (Using Query Parameters)

This GET service will return a list of groups in the form of JSON objects based on the query parameters group name. Groups are only returned if they match all of the specified query parameters. If no query parameters are given this request will return the entire list of groups.

Info
titleAPI URLs

http://host:port/flexdeploy/rest/v1/administration/security/group?

Append the following character sequences to the above URL to specify Query parameters.
Use '&' between successive query parameters: 

groupName={groupname}

Examples:
To search by group name:

http://host:port/flexdeploy/rest/v1/administration/security/group?groupName=read

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "This is an updated group.",
   "groupName": "Simple Group Put",
   "isActive": true,
   "isFlexDeployAdministrator": false,
   "deploymentPermissions": {"environments": [11001],
   "allEnvironments":false
	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      }
   ]
}

PATCH

This PATCH service will update an existing group with the information passed through a JSON object. If an attribute of the JSON is null it will not be updated in the group.

Info
titleAPI URL

http://host:port/flexdeploy/rest/v1/administration/security/group/{Id}

...