PHP code example of mindtwo / laravel-clickup-api

1. Go to this page and download the library: Download mindtwo/laravel-clickup-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mindtwo / laravel-clickup-api example snippets


   $taskDetails = [
       'name' => 'New Task', // Mandatory
       'description' => 'Task description', // Optional
       // Add other task details as needed
   ];

   $task = app(Mindtwo\LaravelClickUpApi\Endpoints\Task::class)->create($listId, $taskDetails);
   

   $tasks = app(Mindtwo\LaravelClickUpApi\Endpoints\Task::class)->index($listId, []);
   

   $task = app(Mindtwo\LaravelClickUpApi\Endpoints\Task::class)->show($taskId);
   

   $updatedDetails = [
       'name' => 'Updated Task Name',
       // Other task details you want to update
   ];

   $updatedTask = app(Mindtwo\LaravelClickUpApi\Endpoints\Task::class)->update($taskId, $updatedDetails);
   

   $response = app(Mindtwo\LaravelClickUpApi\Endpoints\Task::class)->delete($taskId);
   



// Assuming $taskId holds the ID of the task you want to attach a file to
// and $data contains the file and other , 'r'),
        'filename' => 'filename.ext',
    ],
    // Add other data fields as 

// Import the CustomField class at the top of your PHP file
use Mindtwo\LaravelClickUpApi\Endpoints\CustomField;

// Assuming you have a list ID, you can retrieve its custom fields like so:
$listId = 'your_list_id_here'; // Replace with your actual list ID

// Fetch the custom fields for the specified list
$customFields = app(CustomField::class)->show($listId);

// $customFields now contains the response from ClickUp API
bash
php artisan vendor:publish --tag="laravel-clickup-api-config"