get:
  tags:
    - Order Forms
  summary: Get order form metadata
  description: Returns metadata and configuration options for order form editing
  security:
    - ApiKeyAuth: []
  responses:
    '200':
      description: Successful operation
      content:
        application/json:
          schema:
            type: object
            properties:
              result:
                type: string
                enum: [success]
              data:
                type: object
                properties:
                  placeholders:
                    type: object
                    properties:
                      images:
                        type: object
                        description: Available image placeholders
                        additionalProperties:
                          type: string
                        example:
                          "[[RED_ARROW]]": "<img src='https://www.digistore24.com/webinc/images/orderform/order_bump/red_arrow_right.png' alt='' class='order_bump_icon' />"
                          "[[RED_BLINK]]": "<img src='https://www.digistore24.com/webinc/images/orderform/order_bump/red_arrow_right_blink.gif' alt='' class='order_bump_icon' />"
                      other:
                        type: object
                        description: Other placeholders
                        additionalProperties:
                          type: string
                        example:
                          "[[INPUT]]": ""
                          "[[PRICE]]": "123 €"
                  options:
                    type: object
                    properties:
                      image:
                        type: object
                        properties:
                          orderform_header:
                            type: object
                            description: Available header images
                            additionalProperties:
                              type: string
                          orderform_favicon:
                            type: object
                            description: Available favicon images
                            additionalProperties:
                              type: string
                          orderform_widget_tab:
                            type: object
                            description: Available tab images
                            additionalProperties:
                              type: string
                      background_style:
                        type: object
                        description: Background style options
                        additionalProperties:
                          type: string
                        example:
                          white: "Weiß"
                          blue: "Blau"
                      step_count:
                        type: object
                        description: Number of steps options
                        additionalProperties:
                          type: string
                        example:
                          "1": "Ein Schritt"
                          "2": "Zwei Schritte"
                          "3": "Drei Schritte"
                      tab_style:
                        type: object
                        description: Tab style options
                        additionalProperties:
                          type: string
                        example:
                          bigtabs: "Text"
                          image: "Bilder hochladen"
                          image_url: "Bilder per Url einbinden"
                      shipping_position:
                        type: object
                        description: Shipping information position options
                        additionalProperties:
                          type: string
                      summary_positions:
                        type: object
                        description: Order summary position options
                        additionalProperties:
                          type: string
                      refund_waiver_position:
                        type: object
                        description: Refund waiver position options
                        additionalProperties:
                          type: string
                      flex_elements_order:
                        type: object
                        description: Element ordering options
                        additionalProperties:
                          type: string
                      orderbump_position:
                        type: object
                        description: Order bump position options
                        additionalProperties:
                          type: string
                      product:
                        type: object
                        description: Available products grouped by category
                        additionalProperties:
                          type: string
                  form_metas:
                    type: object
                    description: Additional form metadata
    '401':
      description: Unauthorized - Invalid or missing API key
    '403':
      description: Forbidden - Insufficient access rights
