Versions Compared

Key

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

Status
colourGreen
title3.10.0

The Deployment Group REST API is used mange deployment groups and mobile application configurations for deployment groups.

There is always a Default deployment group that can not be deleted from the system. 

It is not required to create separate mobile configuration for each new deployment group that is created. If a deployment group does not have a specific mobile configuration defined it will automatically inherit form the Default deployment group. 


Panel
borderColorgrey
bgColorwhitesmoke

On this page:

Table of Contents
maxLevel2

Related pages:


Resource URL Summary

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

Retrieve a list of all Deployment Groups

GET /seiapi/v3/trans/DeploymentGroup

Retrieve the details of a specific Deployment Group

GET /seiapi/v3/trans/DeploymentGroup/${DeploymentGroupID}

Insert or Update the details of a specific Deployment Group

POST/seiapi/v3/trans/DeploymentGroup/${DeploymentGroupID}

API Specific Parameters

ParameterDescription

${DeploymentGroupID}

Identifies the Deployment Group.

Include Page
_Default HTTP Headers
_Default HTTP Headers



 

API Specifics


Panel
borderColor#D3D3D3

Retrieve a list of all Deployment Groups

This REST API will return a list of all Deployment Groups that exist in the system.

URL

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

GET /seiapi/v3/trans/DeploymentGroup

HTTP Request Body

This request does not require a request body. 

HTTP Response

On success, an HTTP response code of 200 will be returned, and the response body will contain a collection of Deployment Group Objects

(warning) It is possible for the returned collection to be empty if there are no Deployment Groups that exist in the system. 

Code Block
languagejs
firstline1
titleHTTP Response Bodyfirstline1
linenumberstrue
{
	"DeploymentGroups" : [
		// A collection of zero or more deployment group object.
	]
}



Panel
borderColor#D3D3D3

Retrieve the details of a specific Deployment Group

This REST API will return a Deployment Group with the specified ID. The Deployment Group with the specified ID must already exist in the system.

URL

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

GET /seiapi/v3/trans/DeploymentGroup/${DeploymentGroupID}

HTTP Request Body

This request does not require a request body. 

HTTP Response Body

On success, an HTTP response code of 200 will be returned, and the response body will contain a Deployment Group Object. Otherwise, on error, the response body will contain a descriptive reason for the error. 

Include Page
_Deployment Group Object Format
_Deployment Group Object Format


Panel
borderColor#D3D3D3

Insert or Update the details of a specific Deployment Group

This REST API will insert a new Deployment Group with the specified ID into the system, if a Deployment Group with the specified ID does not already exist in the system.

If, however, the Deployment Group with the specified ID does already exist in the system, then this REST API will update (i.e. replace) the already existing Deployment Group with the specified ID with the details of the Deployment Group supplied in the HTTP Request Body.

URL

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

POST/seiapi/v3/trans/DeploymentGroup/${DeploymentGroupID}

HTTP Request Body

The HTTP request body must contain a valid Deployment Group Object.

HTTP Response

On success the API will return a response code of 200.