# fluentform/6.2.6/app/Http/Controllers/FormIntegrationController.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.6. 110 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.6/code/app/Http/Controllers/FormIntegrationController.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.6/raw/app/Http/Controllers/FormIntegrationController.php
- Modified: 2026-04-16T11:38:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/6.2.6/code/app/Http/Controllers/FormIntegrationController.php#L10-L20`.

```php
<?php

namespace FluentForm\App\Http\Controllers;

use FluentForm\App\Services\Integrations\FormIntegrationService;

class FormIntegrationController extends Controller
{
    public function index(FormIntegrationService $integrationService, $formId)
    {
        try {
            $formId = (int) $formId;
            return $this->sendSuccess(
                $integrationService->get($formId)
            );
        } catch (\Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 422);
        }
    }
    
    public function find(FormIntegrationService $integrationService, $formId)
    {
        try {
            $attributes = $this->request->all();
            $attributes['form_id'] = (int) $formId;

            $integration = $integrationService->find($attributes);
            return $this->sendSuccess($integration);
        } catch (\Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 422);
        }
    }
    
    public function update(FormIntegrationService $integrationService, $formId)
    {
        try {
            $attributes = $this->request->all();
            $attributes['form_id'] = (int) $formId;

            $integration = $integrationService->update($attributes);
            return $this->sendSuccess($integration);
        } catch (\Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage()
            ], 422);
        }
    }
    
    public function delete(FormIntegrationService $integrationService, $formId)
    {
        try {
            $formId = (int) $formId;
            $id = intval($this->request->get('integration_id'));
            $integrationService->delete($id, $formId);
            return $this->sendSuccess([
                'message' => __('Successfully deleted the Integration.', 'fluentform'),
            ], 200);
        } catch (\Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 422);
        }
    }
    
    public function integrationListComponent($formId)
    {
        try {
            $attributes = $this->request->all();
            $attributes['form_id'] = (int) $formId;
            
            $sanitizeMap = [
                'integration_name' => 'sanitize_text_field',
                'list_id'          => 'sanitize_text_field',
            ];
            $attributes = fluentform_backend_sanitizer($attributes, $sanitizeMap);
            
            $integrationName = $attributes['integration_name'];
            $formId = (int)$attributes['form_id'];
            $listId = $attributes['list_id'];
            $merge_fields = false;
            $merge_fields = apply_filters_deprecated(
                'fluentform_get_integration_merge_fields_' . $integrationName,
                [
                    $merge_fields,
                    $listId,
                    $formId
                ],
                FLUENTFORM_FRAMEWORK_UPGRADE,
                'fluentform/get_integration_merge_fields_' . $integrationName,
                'Use fluentform/get_integration_merge_fields_' . $integrationName . ' instead of fluentform_get_integration_merge_fields_' . $integrationName
            );

            $merge_fields = apply_filters('fluentform/get_integration_merge_fields_' . $integrationName, $merge_fields, $listId, $formId);
            
            return $this->sendSuccess([
                'merge_fields' => $merge_fields,
            ]);
        } catch (\Exception $e) {
            return $this->sendError([
                'message' => $e->getMessage(),
            ], 422);
        }
    }
    
}

```
