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

# infoSent

Emitted when an info message is successfully sent during a call via [`sendInfo()`](/click-to-call/sdk/api-reference/send-info).

## Category

Info Message

## Callback Parameters

| Parameter | Type                  | Description                                   |
| --------- | --------------------- | --------------------------------------------- |
| `text`    | `string`              | The text content of the sent message.         |
| `data`    | `Record<string, any>` | The key-value data included with the message. |

## Example

```typescript theme={null}
client.on('infoSent', (text, data) => {
  console.log('Info message sent:', text, data);
});
```

## More Information

* [infoReceived](/click-to-call/sdk/event-reference/info-received)
* [sendInfo](/click-to-call/sdk/api-reference/send-info)
