get:
  tags:
    - Conversion Tools
  summary: List conversion tools
  description: Returns a list of all the conversions that you have set up in Digistore24
  operationId: listConversionTools
  parameters:
    - name: type
      in: query
      description: Types of conversion tools to list (comma-separated)
      required: true
      schema:
        type: string
        example: "smartupgrade,socialproof_box,socialproof_bubble,countdown"
  responses:
    '200':
      description: Successful operation
      content:
        application/json:
          schema:
            type: object
            properties:
              smartupgrades:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      example: 1
                    name:
                      type: string
                      example: "Upgrade auf Komplettversion"
                    authkey:
                      type: string
                      example: "R7w4XmVXgIkZ2iGceLhc2AXBh"
                    created_at:
                      type: string
                      format: date-time
                      example: "2016-03-17 15:40:50"
                    is_custom_css_used:
                      type: string
                      enum: ["Y", "N"]
                      example: "N"
                    custom_css:
                      type: string
                      nullable: true
                    upgrade_to_product_id:
                      type: integer
                      example: 12345
                    product_ids:
                      type: string
                      example: "373,20,340,4929,4931"
  security:
    - ApiKeyAuth: []
