acceptLink
Accepts a link request between gateways.
When a requester gateway requests to link with a responder gateway, the responder can use this operation to accept the link request and establish the connection.
Samples
// Accepts a link request from requester gateway
val resp = rtbFabricClient.acceptLink {
gatewayId = "rtb-gw-12345678"
linkId = "link-87654321"
logSettings = LinkLogSettings {
applicationLogs = LinkApplicationLogConfiguration {
sampling = LinkApplicationLogSampling {
errorLog = 100.0.toDouble()
filterLog = 0.0.toDouble()
}
}
}
}Content copied to clipboard