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

# Reject TSS requests

> This operation rejects the specified TSS requests and provides reason for the rejection.

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

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

<RequestExample>
  ```Swift iOS theme={null}
  let tssRequestIDs = ["tss_request_id_01"]
  let reason = "The TSS request does not meet the required criteria."

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

  ```Dart Flutter theme={null}
  final List<String> tssRequestIDs = ["tss_request_id_01"];
  const String reason = "The TSS request does not meet the required criteria.";

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

## Parameters

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

<ParamField path="reason" type="string">
  A detailed explanation for why the TSS requests are being rejected.
</ParamField>
