⚙️User settings

Get and set the user and connection 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

GET https://api.dœcentral.com/user/settings

Query Parameters

{
    // Response
}

Options of settings

The available options are available as an object in the connections endpoint. For every connection you'll find an object called settings.

Example:

    {
      "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
    }

Last updated