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

# Export integration by ID



## OpenAPI

````yaml /api-reference/membrane-api.json get /integrations/{id}/export
openapi: 3.0.0
info:
  title: Membrane API
  description: API documentation for Membrane Engine
  version: '1.0'
  contact: {}
servers:
  - url: https://api.getmembrane.com
security:
  - bearer: []
tags: []
paths:
  /integrations/{id}/export:
    get:
      tags:
        - Integrations
      summary: Export integration by ID
      operationId: exportIntegration
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationExportResponseDto'
components:
  schemas:
    IntegrationExportResponseDto:
      type: object
      properties:
        uuid:
          description: >-
            Stable unique identifier (UUID). Can be provided on create;
            otherwise generated. Must be unique across elements of this type.
          type: string
        key:
          description: >-
            Stable key for referencing the element (e.g. in selectors). Unique
            per (parent, integration) scope. Generated from name if not provided
            on create.
          type: string
        name:
          description: >-
            Display name. Optional on create; used to generate key when key is
            omitted.
          type: string
        description:
          description: Optional human-readable description.
          type: string
        meta:
          description: Optional key-value metadata.
          type: object
          additionalProperties:
            type: object
        logoUri:
          type: string
        externalAppUuid:
          type: string
        oAuthCallbackUri:
          anyOf:
            - type: string
              format: uri
            - type: string
              enum:
                - ''
        logoBase64:
          type: string
        connectorVersion:
          type: string
        connectorUuid:
          type: string
        connectorKey:
          description: >-
            Key of the connector; alternative to connectorId. Resolved to
            connectorId by the API.
          type: string
        optionsConfig:
          type: object
          additionalProperties:
            type: object
            properties:
              disabled:
                type: boolean
              parameters:
                type: object
                additionalProperties:
                  type: object
      required:
        - uuid
        - key
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````