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

# Link intent object

> This represents your user connection attempt.

## The Link Intent object

A `Link Intent` represents your end user's attempt to connect a financial account through the Fintoc Widget. You create one to start the connection flow, and once the user finishes successfully, you exchange its `exchange_token` for the resulting `Link`.

<Info>
  **Connect a test account**

  To connect an account in Test Mode, see our [Testing Guide](/docs/movements/data-aggregation-test-your-integration)
</Info>

```json Link Intent Object theme={null}
{
    "id": "li_a6WUojQ2SjSSeFjH",
    "object": "link_intent",
    "country": "cl",
    "created_at": "2022-12-01T01:50:12Z",
    "exchange_token": "li_a6WUojQ2SjSSeFjH_exchange_token_5bgMY0PHd7NaUkboxXObu30HNhRqoc1Z",
    "exchange_token_expires_at": "2022-12-01T02:20:12Z",
    "holder_type": "individual",
    "mode": "live",
    "product": "movements",
    "status": "created",
    "widget_token": "li_a6WUojQ2SjSSeFjH_sec_Q802GD8ZLmMuK0Atl4ucJuLp"
}
```

| Attribute                   | Type     | Description                                                                                                                                  |
| :-------------------------- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`                        | `string` | Unique identifier for the Link Intent                                                                                                        |
| `object`                    | `string` | Identifier of the object type. Its value for Link Intent will always correspond to `link_intent`                                             |
| `country`                   | `string` | ISO Code (Alpha-2) of the country. Currently only `cl` is supported                                                                          |
| `created_at`                | `string` | When the Link Intent was created                                                                                                             |
| `exchange_token`            | `string` | Temporary token that can be used to retrieve Link information when your user connection is `succceeded`                                      |
| `exchange_token_expires_at` | `string` | When the `exchange_token` will expire                                                                                                        |
| `holder_type`               | `string` | Indicates whether the account to be connected is an `individual` or a `business`                                                             |
| `mode`                      | `string` | Indicates whether the Link Intent is in `live` mode or `test` mode. Currently only `live` is supported                                       |
| `product`                   | `string` | Product that will be used with this connection. Currently only `movements` is supported                                                      |
| `status`                    | `string` | Link Intent current status.                                                                                                                  |
| `widget_token`              | `string` | Temporary token to configure the widget. This attribute is only returned when creating the Link Intent. After that, it will always be `null` |
