> ## Documentation Index
> Fetch the complete documentation index at: https://docs.versori.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update integration information

> Updates an integration information



## OpenAPI

````yaml patch /integrations/{integration_id}
openapi: 3.1.0
info:
  title: Versori Embedded API
  version: 0.0.1
  license:
    name: UNLICENSED
    identifier: UNLICENSED
  description: V1 API for managing embedded integrations
servers:
  - description: Production
    url: https://platform.versori.com/api/embedded/v1
  - description: Staging
    url: https://platform-staging.versori.com/api/embedded/v1/
  - description: Development
    url: http://localhost:8950/embedded/v1
security: []
tags:
  - name: Hubs
  - name: End Users
  - name: Connectors
  - name: Integrations
  - name: Connections
  - name: Embedded
  - name: Miscellaneous
  - name: Internal
paths:
  /integrations/{integration_id}:
    parameters:
      - $ref: '#/components/parameters/integration_id'
    patch:
      tags:
        - Hubs
      summary: Update integration information
      description: Updates an integration information
      operationId: UpdateIntegration
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateIntegration'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Integration'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  parameters:
    integration_id:
      name: integration_id
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/ULID'
  schemas:
    UpdateIntegration:
      description: >
        Integration represents an embedded integration that can be activated by
        end users.
      type: object
      properties:
        name:
          description: >
            Name is a short name for the integration, this is typically the name
            of the Connector being integrated to.
          type: string
        imageUrl:
          description: >
            ImageURL is a URL to an image/icon that represents the integration.
            This image is used within the 

            integration tile displayed in the embedded UI.
          type: string
          format: uri
          x-go-name: ImageURL
        description:
          description: >
            Description can be used to provide a longer description of the
            integration. This can be shown to end users

            in the embedded integration hub UI.
          type: string
        variablesSchema:
          description: >
            VariablesSchema is the JSON schema for the variables defined for
            this integration.
          type: object
          x-go-type-skip-optional-pointer: true
          x-go-type: json.RawMessage
    Integration:
      description: >
        Integration represents an embedded integration that can be activated by
        end users.
      type: object
      properties:
        id:
          type: string
          format: ulid
          x-go-type: ulid.ULID
          x-go-type-skip-optional-pointer: true
          x-go-type-import:
            path: versori.dev/vergo/ulid
          x-go-name: ID
        name:
          description: >
            Name is a short name for the integration, this is typically the name
            of the Connector being integrated to.
          type: string
        imageUrl:
          description: >
            ImageURL is a URL to an image/icon that represents the integration.
            This image is used within the 

            integration tile displayed in the embedded UI.
          type: string
          format: uri
          x-go-name: ImageURL
        screenshotUrl:
          description: >
            ScreenshotURL is a PNG image/screenshot of the integration and can
            be used in the Hub Overview screen when displaying all integrations.
          type: string
          format: uri
          x-go-name: ScreenshotURL
        description:
          description: >
            Description can be used to provide a longer description of the
            integration. This can be shown to end users

            in the embedded integration hub UI.
          type: string
        variablesSchema:
          description: >
            VariablesSchema is the JSON schema for the variables defined for
            this integration.
          type: object
          x-go-type-skip-optional-pointer: true
          x-go-type: json.RawMessage
        boardId:
          description: >
            BoardID is a reference to underlying board that configures the
            integration. 


            For more information on boards see Switchboard API.
          type: string
          format: ulid
          x-go-type: ulid.ULID
          x-go-type-skip-optional-pointer: true
          x-go-type-import:
            path: versori.dev/vergo/ulid
          x-go-name: BoardID
      required:
        - id
        - name
        - boardId
    Error:
      type: object
      properties:
        code:
          type: string
          description: Code is a machine-readable error code.
        message:
          type: string
          description: Message is a human-readable error message.
        fields:
          type: array
          items:
            $ref: '#/components/schemas/ErrorField'
          x-go-type-skip-optional-pointer: true
        details:
          type: string
          x-go-type-skip-optional-pointer: true
      required:
        - code
        - message
    ULID:
      type: string
      format: ulid
      x-go-type: ulid.ULID
      x-go-type-skip-optional-pointer: true
      x-go-type-import:
        path: versori.dev/vergo/ulid
    ErrorField:
      description: ErrorField denotes a field which has an error.
      type: object
      properties:
        field:
          type: string
          description: >
            Field is the name of the field which has an error, this may be a
            path to a nested field, including array

            elements. The format of this field is of the form:
            "field1.field2[0].field3"
        message:
          type: string
          description: Message is the error message for this specific field.
      required:
        - field
        - message

````