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

# Create Session

> Use this endpoint to generate an importer session token based on an importer slug. The session token should be used as part of creating a fuse importer instance.



## OpenAPI

````yaml post /api/v1/importer/sessions
openapi: 3.0.1
info:
  title: API V1
  version: v1
servers:
  - url: https://fuse.flatirons.com
    variables:
      defaultHost:
        default: www.example.com
security: []
paths:
  /api/v1/importer/sessions:
    post:
      tags:
        - Create Session
      summary: Create Session
      description: >-
        Use this endpoint to generate an importer session token based on an
        importer slug. The session token should be used as part of creating a
        fuse importer instance.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                importer_slug:
                  type: string
                  description: Importer Slug
                metadata:
                  type: object
                  description: >-
                    Contains meta information about the importer session which
                    can contain user related information
              required:
                - importer_slug
      responses:
        '201':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  token:
                    type: string
                    description: JWT token for the importer session
                required:
                  - token
        '404':
          description: importer not found
        '422':
          description: unprocessable entity
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````