> For the complete documentation index, see [llms.txt](https://docs.gestao.plus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gestao.plus/api/private/list_indications.md).

# Listar Indicações

## Listar Indicações

<mark style="color:blue;">`GET`</mark> `https://api.gestao.plus/user-indication`

Rota responsável pela listagem de indicados.

#### Headers

| Name                                            | Type   | Description                             |
| ----------------------------------------------- | ------ | --------------------------------------- |
| Origin<mark style="color:red;">\*</mark>        | string | URL origem da requisição                |
| Authorization<mark style="color:red;">\*</mark> | string | Access Token no modelo "Bearer {Token}" |

{% tabs %}
{% tab title="200 " %}

```
{
    "_links": {
        "self": {
            "href": "https://api.gestao.plus/user-indication"
        }
    },
    "_embedded": {
        "user_indication": [
            {
                "id": 4,
                "document": "12312312312",
                "name": "Softwares e Solucoes",
                "email": "email@gestao.plus",
                "phone": null,
                "cellphone": "12312312312",
                "_links": {
                    "self": {
                        "href": "https://api.gestao.plus/user-indication/4"
                    }
                }
            },
            {
                "id": 666,
                "document": "123123123123",
                "name": "Conta Rapida",
                "email": "email@teste.com.br",
                "phone": "(81) 13123123123",
                "cellphone": null,
                "_links": {
                    "self": {
                        "href": "https://api.gestao.plus/user-indication/19"
                    }
                }
            }
        ]
    },
    "total_items": 3
}
```

{% endtab %}

{% tab title="401 " %}

```
{}
```

{% endtab %}
{% endtabs %}
