Cirqll Core
HomeCirqll
HomeCirqll
  1. Task
  • 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
      GET
    • Show
      GET
    • Create
      POST
    • Update
      PATCH
    • Delete
      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
    • Update
  • Webhook
    • Index
    • Show
    • Create
    • Update
    • Delete
  1. Task

Index

GET
https://api.cirqll.nl/api/task
This endpoint allows you to fetch all the tasks with additional filters

Request

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

Header Params

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 -g --request GET 'https://api.cirqll.nl/api/task?with[]=customer&with[]=user&show[]=name&show[]=id&show[]=price&order_by[]=id:desc&order_by[]=name&order_by[]=price:asc&filter=customer_id:in:28;29;30&limit=100&offset=0' \
--header 'Accept: application/json'

Responses

🟢200Success
application/json
Body

Example
{
    "data": [
        {
            "id": 1,
            "date": "2019-08-24T14:15:22Z",
            "description": "string",
            "finished_at": "2019-08-24",
            "import_id": 0,
            "name": "string",
            "user_id": 0,
            "user": {
                "id": 1,
                "name": "Casey Dach",
                "email": "string",
                "created_at": "2024-05-18 13:38:35",
                "updated_at": "2024-05-18 13:38:35",
                "company_id": 0,
                "company": {
                    "id": 1,
                    "name": "string",
                    "phone": "1-310-793-5469",
                    "coc": "string",
                    "financial_goal": 0,
                    "address_id": 0,
                    "address": {
                        "id": 1,
                        "street": "Georgianna Loop",
                        "house_number": 12,
                        "addition": "A",
                        "zipcode": "45668",
                        "city": "Lake Quentinmouth",
                        "province": "DR",
                        "country": "NL",
                        "extra_address_line_one": "string",
                        "extra_address_line_two": "string",
                        "lat": 0,
                        "lon": 0,
                        "created_at": "2024-05-18 13:38:35",
                        "updated_at": "2024-05-18 13:38:35"
                    },
                    "created_at": "2024-05-18 13:38:35",
                    "updated_at": "2024-05-18 13:38:35"
                }
            },
            "customer_id": 0,
            "customer": {
                "id": 1,
                "name": "string",
                "next_contact": "2019-08-24T14:15:22Z",
                "email": "cleora42@gmail.com",
                "phone": "1-848-429-9425",
                "show_on_map": true,
                "coc": "string",
                "description": "string",
                "address_id": 0,
                "address": {
                    "id": 1,
                    "street": "Georgianna Loop",
                    "house_number": 12,
                    "addition": "A",
                    "zipcode": "45668",
                    "city": "Lake Quentinmouth",
                    "province": "DR",
                    "country": "NL",
                    "extra_address_line_one": "string",
                    "extra_address_line_two": "string",
                    "lat": 0,
                    "lon": 0,
                    "created_at": "2024-05-18 13:38:35",
                    "updated_at": "2024-05-18 13:38:35"
                },
                "created_at": "2024-05-18 13:38:35",
                "updated_at": "2024-05-18 13:38:35"
            },
            "contact_id": 0,
            "contact": {
                "id": 1,
                "archived_at": "2019-08-24T14:15:22Z",
                "email": "string",
                "first_name": "string",
                "function": "string",
                "import_id": 0,
                "last_name": "string",
                "more_info": "string",
                "phone": "string",
                "created_at": "2024-05-18 13:38:35",
                "updated_at": "2024-05-18 13:38:35"
            },
            "archived_at": "2019-08-24T14:15:22Z",
            "created_at": "2024-05-18 13:38:35",
            "updated_at": "2024-05-18 13:38:35",
            "task_id": 0,
            "task": {}
        }
    ],
    "limit": 100,
    "total": 0,
    "offset": 0
}
🟠401Not Logged In
🔴500Server Error
Modified at 2025-05-06 02:34:32
Previous
Task
Next
Show
Built with