rejectLink

abstract suspend fun rejectLink(input: RejectLinkRequest): RejectLinkResponse

Rejects a link request between gateways.

When a requester gateway requests to link with a responder gateway, the responder can use this operation to decline the link request.

Samples

// Rejects a requested link request
val resp = rtbFabricClient.rejectLink {
    gatewayId = "rtb-gw-12345678"
    linkId = "link-87654321"
}