# Get Authorization 

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /Authorization/GetAuthorization?email=xxxxxxx@tvcmall.com&password=Nd9!.cd}'c@^YT_:
    get:
      summary: 'Get Authorization '
      deprecated: false
      description: >-
        # How to apply for API?

        It is very easy to apply for OPEN API. The only prerequisite is you have
        an account on our website.

        Only one thing should be considered before you apply for it: Do you want
        us to put your watermark on the item images?

        1. •YES. Please tell your Account Manager you want to apply our OPEN API
        and provide your watermark to us (750x750 pixel with PNG type).

        2. •NO. Please tell your Account Manager you want to apply our OPEN API
        and no watermark is needed.

        Once we get your application, we will review your watermark file (if you
        provide) and if it is qualified. We will inform specific IT engineer to
        authorize you use the OPEN API .

        All these works will be finished in 1-3 working days. We will inform you
        the final result accordingly.



        NOTE: The authorization string must start with the prefix "TVC".

        Example: TVC Nd9!.cd}'c@^YT_
      tags:
        - Authorization
      parameters:
        - name: email
          in: query
          description: email
          required: true
          example: xxxxxxx@tvcmall.com
          schema:
            type: string
        - name: password
          in: query
          description: password
          required: true
          example: Nd9!.cd}'c@^YT_
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  Success:
                    type: boolean
                  AuthorizationToken:
                    type: string
                required:
                  - Success
                  - AuthorizationToken
                x-apifox-orders:
                  - Success
                  - AuthorizationToken
              example:
                Success: true
                AuthorizationToken: 2+s8CDVEwkmRHSJ9lorE5Q==
          headers: {}
          x-apifox-name: success
      security: []
      x-apifox-folder: Authorization
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4282467/apis/api-162165276-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://openapi.tvc-mall.com
    description: 正式环境
security: []

```
