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