> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cognigy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# answered

Emitted when the call is answered by the remote party.

## Category

Call

## Callback Parameters

| Parameter | Type                                                                | Description              |
| --------- | ------------------------------------------------------------------- | ------------------------ |
| `session` | [`CallSession`](/click-to-call/sdk/api-reference/types#callsession) | The active call session. |

## Example

```typescript theme={null}
client.on('answered', (session) => {
  console.log('Call answered. Session ID:', session.id);
});
```

## More Information

* [ended](/click-to-call/sdk/event-reference/ended)
* [failed](/click-to-call/sdk/event-reference/failed)
* [startCall](/click-to-call/sdk/api-reference/start-call)
* [CallSession](/click-to-call/sdk/api-reference/types#callsession)
