Skip to main content

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 getTSSRequests(tssRequestIDs: [String]) async throws -> [TSSRequest]
let tssRequestIDs = ["tss_request_id_01"]

Task {
    do {
        if let requests = try await sdkInstance?.getTSSRequests(tssRequestIDs: tssRequestIDs) {
            for request in requests {
                print("\(request)\n")
            }
        } else {
            print("No TSS requests found")
        }
    } catch {
        print("Error: \(error)")
    }
}

Parameters

tssRequestIDs
string[]
The list of IDs for the TSS requests you want to retrieve.

Response

tssRequests
object[]
The list of retrieved TSS requests.