createInboundExternalLink

Creates an inbound external link.

Samples

// Create an inbound external link for a responder gateway
val resp = rtbFabricClient.createInboundExternalLink {
    gatewayId = "rtb-gw-12345678"
    clientToken = "randomClientToken"
    logSettings = LinkLogSettings {
        applicationLogs = LinkApplicationLogConfiguration {
            sampling = LinkApplicationLogSampling {
                errorLog = 100.0.toDouble()
                filterLog = 0.0.toDouble()
            }
        }
    }
}