src/main/java/platform/qa/steps/RestApiStepDefinitions.java [148:160]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                .get(pathWithIds)
                .then()
                .extract()
                .response()
                .jsonPath()
                .get("");
        var result = convertToListMap(responseObj);

        var pathContext = pathWithIds.contains("/") ? pathWithIds.substring(0, path.lastIndexOf("/")) : pathWithIds;
        var request = new Request(pathContext, Collections.emptyMap(), result, new Timestamp(currentTimeMillis()));
        context.add(request);

        testContext.getScenarioContext().setContext(API_RESULTS, context);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/platform/qa/steps/RestApiStepDefinitions.java [176:188]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                .get(pathWithIds)
                .then()
                .extract()
                .response()
                .jsonPath()
                .get("");
        var result = convertToListMap(responseObj);

        var pathContext = pathWithIds.contains("/") ? pathWithIds.substring(0, path.lastIndexOf("/")) : pathWithIds;
        var request = new Request(pathContext, Collections.emptyMap(), result, new Timestamp(currentTimeMillis()));
        context.add(request);

        testContext.getScenarioContext().setContext(API_RESULTS, context);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



