***

title: rpcAiUnhold
slug: /reference/typescript/agents/function-result/rpc-ai-unhold
description: Release another call from hold via RPC.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[rpc-ai-message]: /docs/server-sdks/reference/typescript/agents/function-result/rpc-ai-message

[functionresult]: /docs/server-sdks/reference/typescript/agents/function-result

Release another call from hold. Typically used after injecting a message into
the held caller's AI agent via [`rpcAiMessage()`][rpc-ai-message].

## **Parameters**

<ParamField path="callId" type="string" required={true} toc={true}>
  Call ID of the call to release from hold.
</ParamField>

## **Returns**

[`FunctionResult`][functionresult] -- `this`, for chaining.

## **Example**

```typescript {4}
import { FunctionResult } from '@signalwire/sdk';

const result = new FunctionResult()
  .rpcAiUnhold('call-id-123');
```