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

# Get sales terms and fees

> Fetches all information related to sales terms and fees with Tixy. Includes: - Default fees paid by the organizer. - Default service charges paid by users purchasing tickets on the Tixy platform. - Specific services and fees applied to each event.




## OpenAPI

````yaml get /sales/terms
openapi: 3.0.1
info:
  title: TIXY Private Organizer API
  version: 1.0.0
  description: >
    The TIXY Private Organizer API provides endpoints for event organizers to
    manage their events  and handle secure interactions with clients. It
    includes CORS preflight support, event retrieval  by unique ID or slug, and
    integrates with AWS Lambda for custom backend processing.
servers:
  - url: https://private-api.tixyapp.com
security: []
paths:
  /sales/terms:
    get:
      summary: Get sales terms and fees
      description: >
        Fetches all information related to sales terms and fees with Tixy.
        Includes: - Default fees paid by the organizer. - Default service
        charges paid by users purchasing tickets on the Tixy platform. -
        Specific services and fees applied to each event.
      responses:
        '200':
          description: |
            Successful response containing the sales terms and fee details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SalesTerms'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/InternalServerError'
      security:
        - privateOrganizerApiAuthFunction: []
components:
  schemas:
    SalesTerms:
      type: object
      properties:
        default_fee:
          type: object
          description: Default fee structure paid by the organizer.
          properties:
            percentage:
              type: number
              format: float
              description: Percentage of ticket price taken as the fee.
            fixed:
              type: number
              format: float
              description: Fixed fee amount per ticket.
        default_service_charge:
          type: object
          description: Default service charge structure paid by ticket buyers.
          properties:
            percentage:
              type: number
              format: float
              description: Percentage of ticket price taken as the service charge.
            fixed:
              type: number
              format: float
              description: Fixed service charge amount per ticket.
        event_specific_terms:
          type: array
          description: Specific terms and fees applied to each event.
          items:
            type: object
            properties:
              event_id:
                type: string
                description: Unique identifier for the event.
              event_name:
                type: string
                description: Name of the event.
              organizer_fee:
                type: object
                description: Fee structure paid by the organizer for this event.
                properties:
                  percentage:
                    type: number
                    format: float
                    description: Percentage of ticket price taken as the fee.
                  fixed:
                    type: number
                    format: float
                    description: Fixed fee amount per ticket.
              service_charge:
                type: object
                description: Service charge structure paid by ticket buyers for this event.
                properties:
                  percentage:
                    type: number
                    format: float
                    description: Percentage of ticket price taken as the service charge.
                  fixed:
                    type: number
                    format: float
                    description: Fixed service charge amount per ticket.
      required:
        - default_fee
        - default_service_charge
        - event_specific_terms
  responses:
    BadRequest:
      description: |
        Bad Request. The `id` parameter is invalid or malformed.
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error message explaining the issue.
              code:
                type: string
                description: Error code indicating the error.
    Unauthorized:
      description: >
        Unauthorized. The request is not authenticated, or the provided
        credentials are invalid.
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error message explaining the unauthorized request.
              code:
                type: string
                description: Error code indicating the reason for the unauthorized status.
    Forbidden:
      description: >
        Forbidden. The request is authenticated but does not have the necessary
        permissions to access the resource.
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error message explaining the forbidden request.
              code:
                type: string
                description: Error code indicating the reason for the forbidden status.
    InternalServerError:
      description: >
        Internal Server Error. An unexpected error occurred while processing the
        request.
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error message explaining the server issue.
              code:
                type: string
                description: Error code indicating the server error.
  securitySchemes:
    privateOrganizerApiAuthFunction:
      type: http
      scheme: bearer
      description: >
        Custom Bearer token authentication for accessing private organizer
        endpoints.
      x-amazon-apigateway-authtype: custom
      x-amazon-apigateway-authorizer:
        authorizerUri:
          uri:
            Fn::Sub: >-
              arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${organizerApiAuthFunction.Arn}/invocations
        authorizerResultTtlInSeconds: 300
        identitySource: method.request.header.Authorization

````