deleteLink

abstract suspend fun deleteLink(input: DeleteLinkRequest): DeleteLinkResponse

Deletes a link between gateways.

Permanently removes the connection between gateways. This action cannot be undone.

Samples

// Deletes an existing link
val resp = rtbFabricClient.deleteLink {
    gatewayId = "rtb-gw-12345678"
    linkId = "link-87654321"
}