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

# Selecting Servers List

> Fetches the list of selectable servers associated with items in the user's cart. Only items that allow server selection and are of type 'CMD_SERVER' are included.



## OpenAPI

````yaml POST /cart/getSelectServers
openapi: 3.0.0
info:
  title: MineStoreCMS REST API
  description: Documentation for MineStoreCMS Frontend REST API.
  version: 3.8.7
servers:
  - url: https://v3.minestorecms.com/api
    description: Example URL of Demo Server
security: []
tags: []
paths:
  /cart/getSelectServers:
    post:
      tags:
        - cart
      summary: Retrieve available servers for items in the user's cart
      description: >-
        Fetches the list of selectable servers associated with items in the
        user's cart. Only items that allow server selection and are of type
        'CMD_SERVER' are included.
      responses:
        '200':
          description: Successfully retrieved the selectable servers.
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: array
                  items:
                    type: object
                    properties:
                      itemId:
                        type: integer
                        description: ID of the item.
                      serverId:
                        type: integer
                        description: ID of the server.
                      serverName:
                        type: string
                        description: Name of the server.
                description: >-
                  A dictionary where each key is an item ID and each value is a
                  list of servers available for that item.
        '401':
          description: Unauthorized - Invalid or missing Access Token.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                    description: Indicates the operation was unsuccessful.
                    example: false
                  message:
                    type: string
                    description: Details about the unauthorized access or error.
                    example: Invalid or missing Access Token.
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````