POST api/group/bulkreassignownership

Bulk reassign Group ownership Processes this group API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The bulk reassign group ownership command data contract supplied with the request.

BulkReassignGroupOwnershipCommandDataContract
NameDescriptionTypeAdditional information
TeamGroupId

The unique identifier of the related team group resource.

integer

None.

BranchId

The unique identifier of the related branch resource.

integer

None.

GroupIds

The unique identifiers of the related group resources.

Collection of integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "TeamGroupId": 1,
  "BranchId": 2,
  "GroupIds": [
    1,
    2
  ]
}

Response Information

Resource Description

The response returned after the operation completes.

JobInvocationDetailsDataContract
NameDescriptionTypeAdditional information
SupportsCancellation

Indicates whether supports cancellation is true.

boolean

None.

ReportsProgress

Indicates whether reports progress is true.

boolean

None.

InitialStatusText

The initial status text value.

string

None.

JobReference

The job reference globally unique identifier.

globally unique identifier

None.

Success

Indicates whether success is true.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "SupportsCancellation": true,
  "ReportsProgress": true,
  "InitialStatusText": "sample string 3",
  "JobReference": "513d0e41-bda5-46ce-9e6f-85dd6d8c7bef",
  "Success": true
}