getInboundExternalLink
inline suspend fun RtbFabricClient.getInboundExternalLink(crossinline block: GetInboundExternalLinkRequest.Builder.() -> Unit): GetInboundExternalLinkResponse
Retrieves information about an inbound external link.
Samples
fun main() {
//sampleStart
// Get details of an inbound external link
val resp = rtbFabricClient.getInboundExternalLink {
gatewayId = "rtb-gw-12345678"
linkId = "link-87654321"
}
//sampleEnd
}