Documentation Index
Fetch the complete documentation index at: https://cobo.com/developers/llms.txt
Use this file to discover all available pages before exploring further.
Try Cobo WaaS Skill in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀
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
The list containing the IDs of the TSS requests to be rejected.
A detailed explanation for why the TSS requests are being rejected.