Skip to main content
public func rejectTSSRequests(tssRequestIDs: [String], reason: String) throws
let tssRequestIDs = ["tss_request_id_01"]
let reason = "The TSS request does not meet the required criteria."

do {
    try sdkInstance?.rejectTSSRequests(tssRequestIDs: tssRequestIDs, reason: reason)
} catch {
    print("Error: \(error)")
}

Parameters

tssRequestIDs
string[]
The list containing the IDs of the TSS requests to be rejected.
reason
string
A detailed explanation for why the TSS requests are being rejected.