Integrate external services
StackState Self-hosted v5.1.x
Example
Component.withId(componentId).get().then { component ->
Http.get("http://mydomain/propagation").param("componentName", component.name).jsonBody()
}.then { response ->
if (response.allow) return transparentState;
else return CLEAR
}Requirements
Last updated