> ## 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 TSS requests

> This operation approves the specified TSS requests.

<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 approveTSSRequests(tssRequestIDs: [String]) throws
  ```

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

<RequestExample>
  ```Swift iOS theme={null}
  let tssRequestIDs = ["tss_request_id_01"]

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

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

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

## Parameters

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