POST api/BusinessModules/{businessModuleId}/Entities/{entityId}/MoveEntity

Move entity (Action management)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
businessModuleId

globally unique identifier

Required

entityId

integer

Required

Body Parameters

WorkPoint.Core.Models.Actions.MoveEntityAction
NameDescriptionTypeAdditional information
BusinessModuleId

globally unique identifier

None.

StageId

string

None.

Id

globally unique identifier

None.

Title

string

None.

Order

integer

None.

Active

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "BusinessModuleId": "90bf602c-fbb2-4d7a-aad9-afd6fe9d3501",
  "StageId": "sample string 2",
  "Id": "52e2af55-4282-4bf8-a029-12d78e931ac6",
  "Title": "sample string 4",
  "Order": 5,
  "Active": true
}

application/xml, text/xml

Sample:
<MoveEntityAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint.Core.Models.Actions">
  <ActionWasSuccessful>true</ActionWasSuccessful>
  <Active>true</Active>
  <CallbackUrl>sample string 9</CallbackUrl>
  <Id>52e2af55-4282-4bf8-a029-12d78e931ac6</Id>
  <Order>5</Order>
  <ReturnValue>sample string 7</ReturnValue>
  <Title>sample string 4</Title>
  <BusinessModuleId>90bf602c-fbb2-4d7a-aad9-afd6fe9d3501</BusinessModuleId>
  <StageId>sample string 2</StageId>
</MoveEntityAction>

Response Information

Resource Description

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.