> For the complete documentation index, see [llms.txt](https://apidocs.cloudinvoice.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.cloudinvoice.net/conta-autenticacao/info-do-user.md).

# Info do User

## Informações do Utilizador

## Devolve informação sobre o token de acesso, como utilizador, empresa, terminal, etc...

<mark style="color:blue;">`GET`</mark> `https://api.cloudinvoice.net/auth/info/`

{% tabs %}
{% tab title="Exemplo de Pedido" %}

```shell
curl https://api.cloudinvoice.net/auth/demo_plan/
    -H "Content-Type: application/json"
```

{% endtab %}

{% tab title="Exemplo de Resposta" %}

```json
{
    "updated_at": 1613150982,
    "version": "1.0.0",
    "version_date": "2021-01-08",
    "today_str": "2021-02-12",
    "created": "2021-02-03T18:34:55.548535Z",
    "key": "16511f6558a00e3273d8b4882b9d9ccdc57cbe4d",
    "user": {
        "id": 1,
        "first_name": "Sample",
        "last_name": "User",
        "full_name": "Sample User",
        "is_active": true,
        "is_staff": false,
        ...
    },
    "company": {
        "id": 1,
        "code": "demo_company",
        ...
    },
    ...
}
```

{% endtab %}
{% endtabs %}

Para ver exemplos de pedidos nas várias linguagens, consulte a página[ Exemplos de Pedidos.](/introducao/exemplos-de-pedidos.md)
