PHP code example of jpcaparas / laravel-n8n-client

1. Go to this page and download the library: Download jpcaparas/laravel-n8n-client 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/ */

    

jpcaparas / laravel-n8n-client example snippets


$n8n = app(\JPCaparas\N8N\N8NClient::class);

$response = $n8n->get('valid-endpoint');
$response = $n8n->post('valid-endpoint', ['data' => 'value']);

$response = $n8n->getWorkflows();
$response = $n8n->getWorkflow('workflow-id');
$response = $n8n->createWorkflow(['name' => 'New Workflow']);
$response = $n8n->updateWorkflow('workflow-id', ['name' => 'Updated Workflow']);
bash
php artisan vendor:publish --provider="JPCaparas\N8N\N8NServiceProvider" --tag="config"