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

# List pending TSS requests

> This operation retrieves a list of pending 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 listPendingTSSRequests() async throws -> [TSSRequest]
  ```

  ```Dart Flutter theme={null}
  Future<List<TSSRequest>> listPendingTSSRequests() async
  ```
</CodeGroup>

<RequestExample>
  ```Swift iOS theme={null}
  Task {
      do {
          if let requests = try await sdkInstance?.listPendingTSSRequests() {
              for request in requests {
                  print("\(request)\n")
              }
          } else {
              print("No pending TSS requests found")
          }
      } catch {
          print("Error: \(error)")
      }
  }
  ```

  ```Dart Flutter theme={null}
  try {
      final requests = await sdkInstance?.listPendingTSSRequests();
      for (final request in requests) {
          print("$request\n");
      }
  } catch (error) {
      print("Error: $error");
  }
  ```
</RequestExample>

## Response

<ResponseField name="tssRequests" type="object[]">
  The list of pending TSS requests.

  <Expandable title="child attributes">
    <Snippet file="ucw_tss_request_snippet.mdx" />
  </Expandable>
</ResponseField>
