Laravel Integrations API

The Integrations API from Laravel — 7 operation(s) for integrations.

Operations 20

GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/horizon Get Laravel Horizon integration status #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/horizon Create Laravel Horizon integration #
DELETE /orgs/{organization}/servers/{server}/sites/{site}/integrations/horizon Delete Laravel Horizon integration #
GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/octane Get Laravel Octane integration status #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/octane Create Laravel Octane integration #
DELETE /orgs/{organization}/servers/{server}/sites/{site}/integrations/octane Delete Laravel Octane integration #
GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/reverb Get Laravel Reverb integration status #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/reverb Create Laravel Reverb integration #
DELETE /orgs/{organization}/servers/{server}/sites/{site}/integrations/reverb Delete Laravel Reverb integration #
GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/inertia Get Inertia integration status #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/inertia Create Inertia integration #
GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/pulse Get Laravel Pulse integration status #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/pulse Create Laravel Pulse integration #
DELETE /orgs/{organization}/servers/{server}/sites/{site}/integrations/pulse Delete Laravel Pulse integration #
GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-maintenance Get Laravel Maintenance integration status #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-maintenance Create Laravel Maintenance integration #
DELETE /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-maintenance Delete Laravel Maintenance integration #
GET /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-scheduler Get Laravel Scheduler integration job #
POST /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-scheduler Create Laravel Scheduler integration job #
DELETE /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-scheduler Delete Laravel Scheduler integration job #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/laravel-integrations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

laravel-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Laravel Cloud Applications Integrations API
  version: 0.0.1
servers:
- url: https://cloud.laravel.com/api
security:
- http: []
tags:
- name: Integrations
paths:
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/horizon:
    get:
      operationId: organizations.servers.sites.integrations.horizon.show
      description: '


        Processing mode: <small><code>sync</code></small>'
      summary: Get Laravel Horizon integration status
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`HorizonIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/HorizonIntegrationResource'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/BackgroundProcessResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.horizon.store
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Create Laravel Horizon integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items: {}
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:create-daemons
      x-permissions:
      - server:create-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
    delete:
      operationId: organizations.servers.sites.integrations.horizon.destroy
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Delete Laravel Horizon integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:delete-daemons
      x-permissions:
      - server:delete-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/octane:
    get:
      operationId: organizations.servers.sites.integrations.octane.show
      description: 'Show whether Laravel Octane integration is enabled.


        Processing mode: <small><code>sync</code></small>'
      summary: Get Laravel Octane integration status
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`OctaneIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/OctaneIntegrationResource'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/BackgroundProcessResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.octane.store
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Create Laravel Octane integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnableOctaneRequest'
      responses:
        '202':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items: {}
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
        '422':
          $ref: '#/components/responses/ValidationException'
      security:
      - oauth2:
        - server:create-daemons
      x-permissions:
      - server:create-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
    delete:
      operationId: organizations.servers.sites.integrations.octane.destroy
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Delete Laravel Octane integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:delete-daemons
      x-permissions:
      - server:delete-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/reverb:
    get:
      operationId: organizations.servers.sites.integrations.reverb.show
      description: 'Show whether Laravel Reverb integration is enabled.


        Processing mode: <small><code>sync</code></small>'
      summary: Get Laravel Reverb integration status
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`ReverbIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/ReverbIntegrationResource'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/BackgroundProcessResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.reverb.store
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Create Laravel Reverb integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnableReverbRequest'
      responses:
        '202':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items: {}
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
        '422':
          $ref: '#/components/responses/ValidationException'
      security:
      - oauth2:
        - server:create-daemons
      x-permissions:
      - server:create-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
    delete:
      operationId: organizations.servers.sites.integrations.reverb.destroy
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Delete Laravel Reverb integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:delete-daemons
      x-permissions:
      - server:delete-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/inertia:
    get:
      operationId: organizations.servers.sites.integrations.inertia.show
      description: 'Show whether Inertia SSR integration is enabled.


        Processing mode: <small><code>sync</code></small>'
      summary: Get Inertia integration status
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`InertiaIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/InertiaIntegrationResource'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/BackgroundProcessResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.inertia.store
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Create Inertia integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items: {}
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:create-daemons
      x-permissions:
      - server:create-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/pulse:
    get:
      operationId: organizations.servers.sites.integrations.pulse.show
      description: 'Show whether Laravel Pulse integration is enabled.


        Processing mode: <small><code>sync</code></small>'
      summary: Get Laravel Pulse integration status
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`PulseIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/PulseIntegrationResource'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/BackgroundProcessResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.pulse.store
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Create Laravel Pulse integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items: {}
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:create-daemons
      x-permissions:
      - server:create-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
    delete:
      operationId: organizations.servers.sites.integrations.pulse.destroy
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Delete Laravel Pulse integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:delete-daemons
      x-permissions:
      - server:delete-daemons
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-maintenance:
    get:
      operationId: organizations.servers.sites.integrations.laravel-maintenance.show
      description: 'Show whether Laravel Maintenance integration is enabled.


        Processing mode: <small><code>sync</code></small>'
      summary: Get Laravel Maintenance integration status
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`LaravelMaintenanceIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/LaravelMaintenanceIntegrationResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.laravel-maintenance.store
      description: 'Enable maintenance mode for the site.


        Processing mode: <small><code>async</code></small>'
      summary: Create Laravel Maintenance integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnableMaintenanceModeRequest'
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
        '422':
          $ref: '#/components/responses/ValidationException'
      security:
      - oauth2:
        - site:manage-commands
      x-permissions:
      - site:manage-commands
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
    delete:
      operationId: organizations.servers.sites.integrations.laravel-maintenance.destroy
      description: 'Disable maintenance mode for the site.


        Processing mode: <small><code>async</code></small>'
      summary: Delete Laravel Maintenance integration
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - site:manage-commands
      x-permissions:
      - site:manage-commands
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
  /orgs/{organization}/servers/{server}/sites/{site}/integrations/laravel-scheduler:
    get:
      operationId: organizations.servers.sites.integrations.laravel-scheduler.show
      description: 'Show whether Laravel Scheduler integration is enabled.


        Processing mode: <small><code>sync</code></small>'
      summary: Get Laravel Scheduler integration job
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '200':
          description: '`LaravelSchedulerIntegrationResource`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/LaravelSchedulerIntegrationResource'
                  included:
                    type: array
                    items:
                      $ref: '#/components/schemas/JobResource'
                required:
                - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:view
      x-permissions:
      - server:view
      x-mint:
        metadata:
          noindex: true
      x-processingMode: sync
    post:
      operationId: organizations.servers.sites.integrations.laravel-scheduler.store
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Create Laravel Scheduler integration job
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items: {}
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:create-schedulers
      x-permissions:
      - server:create-schedulers
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
    delete:
      operationId: organizations.servers.sites.integrations.laravel-scheduler.destroy
      description: '


        Processing mode: <small><code>async</code></small>'
      summary: Delete Laravel Scheduler integration job
      tags:
      - Integrations
      parameters:
      - name: organization
        in: path
        required: true
        description: The organization slug
        schema:
          type: string
      - name: server
        in: path
        required: true
        description: The server ID
        schema:
          type: integer
      - name: site
        in: path
        required: true
        description: The site ID
        schema:
          type: integer
      responses:
        '202':
          description: ''
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
      security:
      - oauth2:
        - server:delete-schedulers
      x-permissions:
      - server:delete-schedulers
      x-mint:
        metadata:
          noindex: true
      x-processingMode: async
components:
  schemas:
    Link:
      type: object
      properties:
        href:
          type: string
          format: uri
        rel:
          type: string
        describedby:
          type: string
        title:
          type: string
        type:
          type: string
        hreflang:
          anyOf:
          - type: string
          - type: array
            items:
              type: string
        meta:
          type: object
      required:
      - href
      title: Link
    JobResource:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
          - scheduledJobs
        attributes:
          type: object
          properties:
            name:
              type:
              - string
              - 'null'
            command:
              type: string
            status:
              type: string
            user:
              type: string
            frequency:
              type: string
            cron:
              type: string
            next_run_time:
              type: string
            created_at:
              type:
              - string
              - 'null'
              format: date-time
            updated_at:
              type:
              - string
              - 'null'
              format: date-time
          required:
          - name
          - command
          - status
          - user
          - frequency
          - cron
          - next_run_time
          - created_at
          - updated_at
        links:
          type: object
          properties:
            self:
              $ref: '#/components/schemas/Link'
          required:
          - self
      required:
      - id
      - type
      - links
      title: JobResource
    EnableReverbRequest:
      type: object
      properties:
        host:
          type: string
        port:
          type: string
        connections:
          type: integer
          minimum: 1
          maximum: 50000
      required:
      - host
      - port
      - connections
      title: EnableReverbRequest
    InertiaIntegrationResource:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
          - inertiaIntegrations
        attributes:
          type: object
          properties:
            enabled:
              type: string
            inertia_installed:
              type: boolean
          required:
          - enabled
          - inertia_installed
        relationships:
          type: object
          properties:
            backgroundProcess:
              type: object
              properties:
                data:
                  anyOf:
                  - $ref: '#/components/schemas/BackgroundProcessResourceIdentifier'
                  - type: 'null'
              required:
              - data
        links:
          type: object
          properties:
            self:
              $ref: '#/components/schemas/Link'
          required:
          - self
      required:
      - id
      - type
      - links
      title: InertiaIntegrationResource
    LaravelSchedulerIntegrationResource:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
          - laravelSchedulerIntegrations
        attributes:
          type: object
          properties:
            enabled:
              type: boolean
            laravel_installed:
              type: string
          required:
          - enabled
          - laravel_installed
        relationships:
          type: object
          properties:
            job:
              type: object
              properties:
                data:
                  anyOf:
                  - $ref: '#/components/schemas/JobResourceIdentifier'
                  - type: 'null'
              required:
              - data
        links:
          type: object
          properties:
            self:
              $ref: '#/components/schemas/Link'
          required:
          - self
      required:
      - id
      - type
      - links
      title: LaravelSchedulerIntegrationResource
    BackgroundProcessResourceIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
          - backgroundProcesses
        id:
          type: string
      required:
      - type
      - id
      title: BackgroundProcessResourceIdentifier
    MaintenanceModeStatus:
      type: string
      enum:
      - disabling
      - enabling
      title: MaintenanceModeStatus
    JobResourceIdentifier:
      type: object
      properties:
        type:
          type: string


# --- truncated at 32 KB (42 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/laravel/refs/heads/main/openapi/laravel-integrations-api-openapi.yml