ЕСОЗ - публічна документація

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Specification

Schema

Features - Get all

Purpose

This WS is designed to return Service list by filters.

Input parameters (filters)

  • id (optional)
  • code (optional)
  • name (optional, as `LIKE *`)
  • isActive (optional)

Logic WS

  1. Verify the validity of access token
  2. Check user scopes in order to perform this action (scope = 'service_catalog:read')
  3. Search Services by filters in payload

    SELECT * FROM service_groups
    WHERE parent_group_id in (
    	SELCT id FROM service_groups
    	WHERE is_active = 'True') 
    or  parent_group_id is NULL
    
    


  • No labels