Skip to content

Retrieve a Node's Children

Given an EDL node ID, retrieves immediate children (not grandchildren) of that node. Learn more about EDL hierarchies in Vault Help.

GET/api/{version}/composites/trees/{edl_hierarchy_or_template}/{parent_node_id}/children
NameDescription
Content-Typeapplication/json (default) or text/csv
Acceptapplication/json (default) or application/xml or text/csv
curl -X POST -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v22.1/composites/trees/edl_hierarchy__v/0000000000000JIT/children
{
  "responseStatus": "SUCCESS",
  "data": [
    {
      "id": "0000000000000JLL",
      "order__v": 1,
      "ref_type__v": "edl_item__v",
      "ref_name__v": "NewEDL Child",
      "url": "/vobjects/edl_item__v/0EI000000009401",
      "ref_id__v": "0EI000000009401",
      "parent_id__v": "0000000000000JIT"
    }
  ]
}