Cirqll Core
HomeCirqll
HomeCirqll
  1. Setting
  • Getting Started
  • Documentation
    • Zapier
    • Query Parameters
      • Eager Loading
      • Partial Data
      • Count Relations
      • Filter
      • Order By
      • Pagination
    • Authentication
      • OAuth2
        • Authorize
          • Authorize
        • User
          • Me
        • Client
          • Index
          • Create
          • Update
          • Delete
        • Token
          • Create
          • Refresh
          • Index
        • Scopes
  • User
    • Index
      GET
    • Show
      GET
    • Create
      POST
    • Update
      PATCH
    • Delete
      DELETE
  • Role
    • Index
      GET
    • Show
      GET
    • Create
      POST
    • Update
      PATCH
    • Delete
      DELETE
  • Customer
    • Index
      GET
    • Show
      GET
    • Delete
      DELETE
    • Update
      PATCH
    • Create
      POST
  • Contact
    • Index
      GET
    • Show
      GET
    • Create
      POST
    • Update
      PATCH
    • Delete
      DELETE
  • Task
    • Index
    • Show
    • Create
    • Update
    • Delete
  • Appointment
    • Index
    • Show
    • Create
    • Update
    • Delete
  • Financial
    • Chance
      • Index
      • Show
      • Create
      • Update
      • Delete
    • Assignment
      • Index
      • Show
      • Create
      • Update
      • Delete
    • Contract
      • Index
      • Show
      • Create
      • Update
      • Delete
  • Email
    • Index
    • Show
    • Create
    • Update
    • Delete
  • Field
    • Index
    • Show
    • Create
    • Update
    • Delete
  • Note
    • Index
    • Show
    • Create
    • Update
    • Delete
  • To-do
    • Index
    • Show
    • Create
    • Update
    • Delete
  • Template
    • Index
    • Show
    • Update
    • Create
    • Delete
  • Setting
    • Index
      GET
    • Update
      PATCH
  • Webhook
    • Index
    • Show
    • Create
    • Update
    • Delete
  1. Setting

Update

PATCH
https://api.cirqll.nl/api/setting
Endpoint to update your settings

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "startup": "map",
    "chance_1": "string",
    "chance_2": "string",
    "chance_3": "string",
    "chance_4": "string",
    "chance_5": "string",
    "email_interval": "daily",
    "dashboard_todo": true,
    "dashboard_chance": true,
    "dashboard_contract": true,
    "color_mode": "light",
    "language": "nl",
    "show_information": true,
    "show_on_map_default": true,
    "chance_layout_is_grid": false,
    "financial_goal": 0,
    "two_factor_mode": "none"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.cirqll.nl/api/setting' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "startup": "map",
    "chance_1": "string",
    "chance_2": "string",
    "chance_3": "string",
    "chance_4": "string",
    "chance_5": "string",
    "email_interval": "daily",
    "dashboard_todo": true,
    "dashboard_chance": true,
    "dashboard_contract": true,
    "color_mode": "light",
    "language": "nl",
    "show_information": true,
    "show_on_map_default": true,
    "chance_layout_is_grid": false,
    "financial_goal": 0,
    "two_factor_mode": "none"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "startup": "map",
    "chance_1": "string",
    "chance_2": "string",
    "chance_3": "string",
    "chance_4": "string",
    "chance_5": "string",
    "email_interval": "daily",
    "dashboard_todo": true,
    "dashboard_chance": true,
    "dashboard_contract": true,
    "color_mode": "light",
    "language": "nl",
    "show_information": true,
    "show_on_map_default": true,
    "chance_layout_is_grid": false,
    "financial_goal": 0,
    "two_factor_mode": "none"
}
🟠401Not Logged In
🔴500Server Error
Modified at 2025-05-06 02:34:28
Previous
Index
Next
Webhook
Built with