Skip to main content
POST
/
api
/
plan
/
{boardId}
/
move
Moves an item from one cycle to another within the same board. Updates ordering in both source and target cycles.
curl --request POST \
  --url https://{tenant}.ekso.app/api/plan/{boardId}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "itemId": "<string>",
  "fromCycleId": "<string>",
  "toCycleId": "<string>",
  "toIndex": 123
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

JWT Bearer token. Obtain via the OAuth 2.0 token endpoint.

Path Parameters

boardId
string
required

Body

itemId
string
fromCycleId
string
toCycleId
string
toIndex
integer<int32>

Response

OK

success
boolean