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

# Get supportsessionsredirect

> Create a web support session from metadata passed in the query string and redirect the player to the public web support site with the session code attached (`sid`). Requires no authentication; the game is identified by its game environment `token`. Extra `player.*`, `tags`, and `fields.*` query parameters are accepted as session metadata.



## OpenAPI

````yaml https://api.theymes.com/openapi get /support/sessions/redirect
openapi: 3.1.0
info:
  title: Theymes API
  version: 1.0.0
  description: >-
    Theymes API allows you to interact with the Theymes platform.



    Most endpoints require an API key for authentication. You can generate an
    API key in the Theymes dashboard.



    The API key should be included in the Authorization header
    (```Authorization: Bearer <YOUR_KEY>```).



    The public support link endpoints do not require authentication and are
    grouped separately below.
servers: []
security: []
tags:
  - name: Authenticated endpoints (API key)
    description: Endpoints that require an API key in the Authorization header.
  - name: Public support links (no authentication)
    description: >-
      Endpoints for creating web support sessions and links. These require no
      authentication and are identified by a game environment token.
paths:
  /support/sessions/redirect:
    get:
      tags:
        - Public support links (no authentication)
      description: >-
        Create a web support session from metadata passed in the query string
        and redirect the player to the public web support site with the session
        code attached (`sid`). Requires no authentication; the game is
        identified by its game environment `token`. Extra `player.*`, `tags`,
        and `fields.*` query parameters are accepted as session metadata.
      operationId: redirectToSupport
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: token
          in: query
        - schema:
            type: string
          required: false
          name: language
          in: query
        - schema:
            type: string
            description: >-
              When provided, the user is taken directly to that resource instead
              of the support home page. Must match a resource key configured in
              the Theymes application.
          required: false
          description: >-
            When provided, the user is taken directly to that resource instead
            of the support home page. Must match a resource key configured in
            the Theymes application.
          name: resource
          in: query
        - schema:
            type: string
          required: false
          name: signedMetadataToken
          in: query
      responses:
        '307':
          description: >-
            Temporary redirect to the public web support URL with the session
            code attached

````