Fenergo Nebula Dashboards Query (PENDING DEPRECATION) 1.0.0

Fenergo Nebula Dashboards Query (PENDING DEPRECATION) — OpenAPI 3.0.1 contract published by Fenergo for the dashboardsquery service of the Fen-X SaaS platform, carrying 15 path(s) and 15 operation(s). Harvested verbatim from Fenergo's own published specification endpoint.

Operations 15

POST /api/journey-dashboard Get in progress journeys assigned to the specified team. #
POST /api/journey-dashboard/lite Get in progress journeys assigned to the specified team without tasks. #
POST /api/journey-dashboard/preview Get in progress journeys assigned to the specified team without tasks. #
POST /api/journey-dashboard/journeys Get in progress journeys assigned to the specified team without tasks. #
GET /api/journey-dashboard/journeys/entity/{entityId} Get all journeys for a given entity #
POST /api/journey-dashboard/tasks/{journeyId} Get tasks for given journey #
POST /api/journey-dashboard/journeyMilestonesTasks/{journeyId} Get journey milestones with tasks for given journey #
POST /api/journey-stats Get journey stats like number of journeys completed or average journey time. #
GET /api/task-queue/{userId} Get tasks assigned to the specified user. #
GET /api/task-queue/favourites/{userId} Get favourite tasks assigned to the specified user. #
POST /api/team-tasks Get team tasks dashboard #
POST /api/unassigned-task Get unassigned tasks assigned to the specified team. #
POST /api/unassigned-task/preview Get unassigned tasks assigned to the specified team. #
POST /api/unassigned-task/tasks Get unassigned tasks assigned to the specified team. #
GET /api/user-journey-dashboard/{userId} Get journeys with tasks assigned to the specified user. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dashboardsquery-v1-0-0"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

fenergo-dashboardsquery-v1-0-0-openapi.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Fenergo Nebula Dashboards Query (PENDING DEPRECATION)",
    "description": "!!! IMPORTANT NOTICE: \nThis API is pending deprecation and will be removed on 28.02.2026. For more information visit: https://docs.fenergox.com/notice-of-change/2025/07/22/legacy-dashboards-deprecation \n\nDashboards Query API is part of FenX eco-system to manage Dashboards. All the operations require valid access token obtained from Identity service.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "/dashboardsquery"
    }
  ],
  "paths": {
    "/api/journey-dashboard": {
      "post": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get in progress journeys assigned to the specified team.",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: TeamDashboardAccess",
        "operationId": "GetTeamJourneyDashboard",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "List of team IDs",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StringListServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Journey dashboard for specified criteria is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyDashboardDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        },
        "deprecated": true
      }
    },
    "/api/journey-dashboard/lite": {
      "post": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get in progress journeys assigned to the specified team without tasks.",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: TeamDashboardAccess",
        "operationId": "GetTeamJourneyDashboardLite",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "List of team IDs",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StringListServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Journey dashboard for specified criteria is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyDashboardDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        },
        "deprecated": true
      }
    },
    "/api/journey-dashboard/preview": {
      "post": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get in progress journeys assigned to the specified team without tasks.",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: TeamDashboardAccess",
        "operationId": "GetTeamJourneyDashboardPreview",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "List of team IDs",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StringListServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Journey dashboard for specified criteria is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyDashboardDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        }
      }
    },
    "/api/journey-dashboard/journeys": {
      "post": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get in progress journeys assigned to the specified team without tasks.",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: TeamDashboardAccess",
        "operationId": "GetTeamJourneys",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "List of team IDs",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StringListServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Journey dashboard for specified criteria is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyDashboardDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        }
      }
    },
    "/api/journey-dashboard/journeys/entity/{entityId}": {
      "get": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get all journeys for a given entity",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: JourneyAccess",
        "operationId": "GetEntityJourneys",
        "parameters": [
          {
            "name": "entityId",
            "in": "path",
            "description": "The UiD of the entity",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyDashboardDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          },
          "500": {
            "description": "Internal server exception. Please, contact your provider.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "Internal server exception. Please, contact your provider.",
                      "type": "Error",
                      "errorCode": "INTERNAL_SERVER_ERROR"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/api/journey-dashboard/tasks/{journeyId}": {
      "post": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get tasks for given journey",
        "description": "<br /><br /><b>Required permissions:</b><br />At least one of the following permissions is required: TeamDashboardAccess, JourneyAccess",
        "operationId": "GetJourneyTasks",
        "parameters": [
          {
            "name": "journeyId",
            "in": "path",
            "description": "",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "List of team IDs",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StringListServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Tasks for specified journey are returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyTaskDtoListServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        }
      }
    },
    "/api/journey-dashboard/journeyMilestonesTasks/{journeyId}": {
      "post": {
        "tags": [
          "JourneyDashboard"
        ],
        "summary": "Get journey milestones with tasks for given journey",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: TeamDashboardAccess",
        "operationId": "getJourneyMilestonesTasks",
        "parameters": [
          {
            "name": "journeyId",
            "in": "path",
            "description": "",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "List of team IDs",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StringListServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Tasks for specified journey are returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyMilestonesTasksDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        }
      }
    },
    "/api/journey-stats": {
      "post": {
        "tags": [
          "JourneyStats"
        ],
        "summary": "Get journey stats like number of journeys completed or average journey time.",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permissions are required: TeamDashboardAccess",
        "operationId": "GetJourneyStatsDashboard",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "Request object that contains a list of teams and date range for which the data is requested. Available range values: Daily, RollingSeven, RollingThirty",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/JourneyStatsDashboardRequestDtoServiceRequest"
              }
            }
          }
        },
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Stats dashboard for specified criteria is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JourneyStatsDashboardResponseDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        }
      }
    },
    "/api/task-queue/{userId}": {
      "get": {
        "tags": [
          "TaskQueueDashboard"
        ],
        "summary": "Get tasks assigned to the specified user.",
        "description": "<br /><br /><b>Required permissions:</b><br />At least one of the following permissions is required: TeamDashboardAccess, TaskDashboardAccess",
        "operationId": "GetUserTasksDashboard",
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "description": "",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "responses": {
          "413": {
            "description": "Payload Too Large",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "The amount of data requested is too large. Please request smaller data set.",
                      "type": "Error",
                      "errorCode": "PAYLOAD_TOO_LARGE"
                    }
                  ]
                }
              }
            }
          },
          "200": {
            "description": "Success. Journey dashboard for specified criteria is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TaskQueueDtoListServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          }
        }
      }
    },
    "/api/task-queue/favourites/{userId}": {
      "get": {
        "tags": [
          "TaskQueueDashboard"
        ],
        "summary": "Get favourite tasks assigned to the specified user.",
        "description": "<br /><br /><b>Required permissions:</b><br />Following permi

# --- truncated at 32 KB (79 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/fenergo/refs/heads/main/openapi/fenergo-dashboardsquery-v1-0-0-openapi.json