Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
Top
Top

...

AttributesTypeDescription
descriptionStringThe description of the group.
isFDAdminisFlexDeployAdministratorBooleanThe boolean representing whether the group is a Flex Deploy Administrator.
groupIdLongThe unique Id of the group.
groupNameStringThe unique name of the group.
isActiveBooleanThe boolean representing whether the group is active.
globalPermissionsList<GlobalPermissionPojo>The list of global permissions associated with the group
deploymentPermissionsList<DeploymentPermissionPojo>The list of deployment permissions associated with the group

...

AttributesTypeDescription
environmentIdsList<Long>The list of environment Ids associated with the deployment permissions
deployAllEnvironmentsallEnvironmentsBooleanThe boolean representing whether the group is able to deploy all environments or not.

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "test",
   "isFDAdminisFlexDeployAdministrator": false,
   "groupId": 10000,
   "groupName": "test",
   "isActive": true,
   "globalPermissions": [   {
      "objectType": "WORKFLOW",
      "actionType": "READ"
   }],
   "deploymentPermissions": {"environmentIds":    [
      18605,
      20610
   ],
	"deployAllEnvironmentsallEnvironments":false
}
}

When we run a GET request at the following URL

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "test",
   "isFDAdminisFlexDeployAdministrator": false,
   "groupId": 10000,
   "groupName": "test",
   "isActive": true,
   "globalPermissions": [   {
      "objectType": "WORKFLOW",
      "actionType": "READ"
   }],
   "deploymentPermissions": {"environmentIds":    [
      18605,
      20610
   ],
	"deployAllEnvironmentsallEnvironments":false
}
}

Back to Top

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/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/topology/administration/security/group?groupname=read

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "test",
   "isFDAdminisFlexDeployAdministrator": false,
   "groupId": 10000,
   "groupName": "test",
   "isActive": true,
   "globalPermissions": [   {
      "objectType": "WORKFLOW",
      "actionType": "READ"
   }],
   "deploymentPermissions": {"environmentIds":    [
      18605,
      20610
   ],
	"deployAllEnvironmentsallEnvironments":false
}
}

When we run a GET request at the following URL

...

Code Block
themeEclipse
titleGroup - 10000
[
{
   "description": "test",
   "isFDAdminisFlexDeployAdministrator": false,
   "groupId": 10000,
   "groupName": "test",
   "isActive": true,
   "globalPermissions": [   {
      "objectType": "WORKFLOW",
      "actionType": "READ"
   }],
   "deploymentPermissions": {"environmentIds":    [
      18605,
      20610
   ],
	"deployAllEnvironmentsallEnvironments":false
}
}
]


Back to Top

...

POST

...

AttributesTypeRequiredDescription
descriptionStringNoThe description of the group.
isFDAdminisFlexDeployAdministratorBooleanNoThe boolean representing whether the group is a Flex Deploy Administrator.
groupIdLongNoThe unique Id of the group.
groupNameStringYesThe unique name of the group.
isActiveBooleanNoThe boolean representing whether the group is active.
globalPermissionsList<GlobalPermissionPojo>NoThe list of global permissions associated with the group
deploymentPermissionsList<DeploymentPermissionPojo>NoThe list of deployment permissions associated with the group

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "This is a simple group with no permissions.",
   "groupName": "Simple Group",
   "isActive": true,
   "isFDAdminisFlexDeployAdministrator": false,
   "deploymentPermissions": {"environmentIds": [],
   "deployAllEnvironmentsallEnvironments":false
	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      },
            {
         "actionType": "READ",
         "objectType": "SCHEDULEDTASK"
      },
            {
         "actionType": "READ",
         "objectType": "WORKFLOW"
      }
   ]
}

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "This is a simple group with permissions.",
   "groupId": 10000,
   "groupName": "Simple Group",
   "isActive": true,
   "isFDAdminisFlexDeployAdministrator": false,
   "deploymentPermissions": {"environmentIds": [],
   "deployAllEnvironmentsallEnvironments":false
  	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      },
            {
         "actionType": "READ",
         "objectType": "SCHEDULEDTASK"
      },
            {
         "actionType": "READ",
         "objectType": "WORKFLOW"
      }
   ]
}

...

AttributesTypeRequiredDescription
descriptionStringNoThe description of the group.
isFDAdminisFlexDeployAdministratorBooleanNoThe boolean representing whether the group is a Flex Deploy Administrator.
groupIdLongNoThe unique Id of the group.
groupNameStringYesThe unique name of the group.
isActiveBooleanNoThe boolean representing whether the group is active.
globalPermissionsList<GlobalPermissionPojo>NoThe list of global permissions associated with the group
deploymentPermissionsList<DeploymentPermissionPojo>NoThe list of deployment permissions associated with the group

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "This is a simple group with no permissions.",
   "groupName": "Simple Group",
   "isActive": true,
   "isFDAdminisFlexDeployAdministrator": false,
   "deploymentPermissions": {"environmentIds": [],
   "deployAllEnvironmentsallEnvironments":false
	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      },
            {
         "actionType": "READ",
         "objectType": "SCHEDULEDTASK"
      },
            {
         "actionType": "READ",
         "objectType": "WORKFLOW"
      }
   ]
}

...

Code Block
themeEclipse
titleEnvironment PUT Receive JSON
{
   "description": "This is an updated group.",
   "groupName": "Simple Group Put",
   "isActive": true,
   "isFDAdminisFlexDeployAdministrator": false,
   "deploymentPermissions": {"environmentIds": [11001],
   "deployAllEnvironmentsallEnvironments":false
	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      }
   ]
}

...

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

...

Back to Top

...

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/administration/security/group/{Id}

...

AttributesTypeRequiredDescription
descriptionStringNoThe description of the group.
isFDAdminisFlexDeployAdministratorBooleanNoThe boolean representing whether the group is a Flex Deploy Administrator.
groupIdLongNoThe unique Id of the group.
groupNameStringNoThe unique name of the group.
isActiveBooleanNoThe boolean representing whether the group is active.
globalPermissionsList<GlobalPermissionPojo>NoThe list of global permissions associated with the group
deploymentPermissionsList<DeploymentPermissionPojo>NoThe list of deployment permissions associated with the group

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "This is a simple group with no permissions.",
   "groupName": "Simple Group",
   "isActive": true,
   "isFDAdminisFlexDeployAdministrator": false,
   "deploymentPermissions": {"environmentIds": [],
   "deployAllEnvironmentsallEnvironments":false
	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      },
            {
         "actionType": "READ",
         "objectType": "SCHEDULEDTASK"
      },
            {
         "actionType": "READ",
         "objectType": "WORKFLOW"
      }
   ]
}

...

Code Block
themeEclipse
titleGroup - 10000
{
   "description": "This is an patched group.",
   "groupName": "Simple Group Patch",
   "isActive": true,
   "isFDAdminisFlexDeployAdministrator": false,
   "deploymentPermissions": {"environmentIds": [],
   "deployAllEnvironments":false
	},
   "globalPermissions":    [
            {
         "actionType": "UPDATE",
         "objectType": "APPROVAL"
      },
            {
         "actionType": "READ",
         "objectType": "NOTIFICATION"
      },
            {
         "actionType": "READ",
         "objectType": "SCHEDULEDTASK"
      },
            {
         "actionType": "READ",
         "objectType": "WORKFLOW"
      }
   ]
}

...