# User settings

In order to get the right tasks, most of the connections need a configuration. This endpoint allows you to read and also set the required settings.

## User settings

<mark style="color:blue;">`GET`</mark> `https://api.dœcentral.com/user/settings`

#### Query Parameters

| Name        | Type    | Description |
| ----------- | ------- | ----------- |
| prettyprint | boolean |             |

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

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

### Options of settings

The available options are available as an object in the [connections endpoint](https://docs.xn--dcentral-ktb.com/public/connections). For every connection you'll find an object called `settings`.

**Example:**

```json
    {
      "color": "#333",
      "slug": "google-calendar",
      "icon": "https://icongr.am/simple/googlecalendar.svg?size=32&colored=true",
      "name": "Google Calendar",
      "settings": {
        "calendar": {
          "type": "array",
          "desc": "List of calendar",
          "name": "Calendar"
        }
      },
      "public": true,
      "status": "Live",
      "_id": 2
    }
```
