@startuml
!include skin.inc
participant "API consumer" as cons
participant "NFV-MANO\nfunctional entity" as prod 
	
alt query information about multiple thresholds
	cons -> prod: GET .../thresholds
        prod -> cons: 200 OK (Threshold[]) 
else read information about individual threshold
	cons -> prod: GET .../thresholds/{thresholdId}
        prod->cons: 200 OK (Threshold)
end


@enduml

