Cirqll Core
HomeCirqll
HomeCirqll
  1. To-do
  • Getting Started
  • 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
    • Show
    • Create
    • Update
    • 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
      GET
    • Show
      GET
    • Create
      POST
    • Update
      PATCH
    • Delete
      DELETE
  • Template
    • Index
    • Show
    • Update
    • Create
    • Delete
  • Setting
    • Index
    • Update
  • Webhook
    • Index
    • Show
    • Create
    • Update
    • Delete
  1. To-do

Update

PATCH
https://api.cirqll.nl/api/todo/{id}
Update todo based on unique entity id

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Example
{
    "description": "Deserunt tempore aspernatur commodi accusantium ullam. Libero provident ut pariatur eos id eius. Debitis eveniet quasi quos sint soluta molestiae. Ad iure modi necessitatibus provident vero iusto. Eaque porro ut. Hic molestias dolorem saepe similique iste officia quis deserunt.",
    "id": 121
}

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/todo/121' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "description": "Deserunt tempore aspernatur commodi accusantium ullam. Libero provident ut pariatur eos id eius. Debitis eveniet quasi quos sint soluta molestiae. Ad iure modi necessitatibus provident vero iusto. Eaque porro ut. Hic molestias dolorem saepe similique iste officia quis deserunt.",
    "id": 121
}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": 0,
    "user_id": 0,
    "description": "string",
    "archived_at": null
}
🟠404Record Not Found
🟠401Not Logged In
🔴500Server Error
Modified at 2025-05-06 02:34:32
Previous
Create
Next
Delete
Built with