List navigation trees

GET /navigation/trees

Returns the list of navigation trees available to your corporation.

A navigation tree is a tree-structure to organize your products and navigate into them in a classic "nested folders" architecture.

Responses

GET /navigation/trees
curl \
 -X GET https://api.ppe-analytics.com/api/v1/navigation/trees \
 -H "PPEApiKey: $API_KEY"
Response example (200)
{
  "status": "OK",
  "result": {
    "navigation_trees": [
      {
        "id": "aada9924-34dd-4ce7-8e15-482ff0c8fa81",
        "key": "by-risk",
        "allow_multiple_nodes": false,
        "api_get_navigation_tree": "/api/v1/navigation/trees/aada9924-34dd-4ce7-8e15-482ff0c8fa81"
      },
      {
        "id": "b1702cb8-b68e-47e5-a8fe-4a1b330d567f",
        "key": "website-tree-structure",
        "allow_multiple_nodes": true,
        "api_get_navigation_tree": "/api/v1/navigation/trees/b1702cb8-b68e-47e5-a8fe-4a1b330d567f"
      }
    ]
  }
}