Skip to main content
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 approveTransactions(transactionIDs: [String]) throws
let transactionIDs = ["transaction_id_01"]

do {
    try sdkInstance?.approveTransactions(transactionIDs: transactionIDs)
} catch {
    print("Error: \(error)")
}

Parameters

transactionIDs
string[]
The list containing the IDs of the transactions to be approved.