createLink
Creates a new link between gateways.
Establishes a connection that allows gateways to communicate and exchange bid requests and responses.
Samples
// Creates a new link between two RTB applications. Requires peerGatewayId to specify the target
// gateway.
val resp = rtbFabricClient.createLink {
gatewayId = "rtb-gw-12345678"
peerGatewayId = "rtb-gw-87654321"
logSettings = LinkLogSettings {
applicationLogs = LinkApplicationLogConfiguration {
sampling = LinkApplicationLogSampling {
errorLog = 100.0.toDouble()
filterLog = 0.0.toDouble()
}
}
}
}Content copied to clipboard