Add path endpoint
Add a new endpoint that corresponds to:
/**
* @swagger
* /ids/{sessionId}/path:
* get:
* summary: Returns the location of the files or datasets
* parameters:
* - $ref: '#/components/parameters/sessionId'
* - in: query
* description: identifier of the datasets
* name: datasetIds
* schema:
* type: array
* items:
* $ref: '#/components/schemas/dataset'
* - in: query
* description: identifier of the datafiles
* name: datafileIds
* schema:
* type: array
* items:
* $ref: '#/components/schemas/datafile'
* - in: query
* description: if true only the locations that currently exists will be returned
* name: isonline
* schema:
* type: boolean
* default: false
* '400':
* $ref: '#/components/responses/error400'
* '500':
* description: Unexpected error
* $ref: '#/components/responses/error500'
* tags:
* - IDS
*/