Information Object Move

The information object move REST API endpoint allows information objects to be moved.

POST /api/informationobjects/<id>/move

Summary of information object data.

Example request:

  POST /api/informationobjects/528/move HTTP/1.1
  Host: example.com

{
    "parent_id": 234
}

Example response:

  HTTP/1.1 200 OK
  Content-Type: application/json

{
  "id": 528,
  "parent_id": 234
}
Status Codes:

Back to API documentation index