> ## 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.

# Approve transactions

> This operation approves the specified transactions.

<Tip>
  Try [Cobo WaaS Skill](/v2/guides/overview/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 🚀
</Tip>

<CodeGroup>
  ```Swift iOS theme={null}
  public func approveTransactions(transactionIDs: [String]) throws
  ```

  ```Dart Flutter theme={null}
  Future<void> approveTransactions(List<String> transactionIDs) async
  ```
</CodeGroup>

<RequestExample>
  ```Swift iOS theme={null}
  let transactionIDs = ["transaction_id_01"]

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

  ```Dart Flutter theme={null}
  final List<String> transactionIDs = ["transaction_id_01"];

  try {
      await sdkInstance?.approveTransactions(transactionIDs: transactionIDs);
  } catch (error) {
       print("Error: $error");
  }
  ```
</RequestExample>

## Parameters

<ParamField path="transactionIDs" type="string[]">
  The list containing the IDs of the transactions to be approved.
</ParamField>
