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

# Add seats to the current subscription



## OpenAPI

````yaml specs/billing_api_docs.json post /api/v1/subscriptions/add-seats
openapi: 3.0.1
info:
  title: Billing API
  description: Billing service for managing subscriptions, payments, and entitlements
  contact: {}
  version: '1.0'
servers:
  - url: https://dev-billing-api.iqraa.ai/api/v1
security: []
tags:
  - name: Customers
    description: Customers related endpoints
  - name: Subscriptions
    description: Subscription related endpoints
  - name: Plans
    description: Plans related endpoints
  - name: Entitlements
    description: Entitlements related endpoints
  - name: Payments
    description: Payments related endpoints
  - name: Emails
    description: Email related endpoints
paths:
  /api/v1/subscriptions/add-seats:
    post:
      tags:
        - Subscriptions
      summary: Add seats to the current subscription
      operationId: SubscriptionController_addSeats
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddSeatsDto'
      responses:
        '200':
          description: Seats added successfully
        '400':
          description: Bad request - Invalid seats number
        '403':
          description: Forbidden - No organization associated
        '404':
          description: Subscription not found
      security:
        - bearer: []
components:
  schemas:
    AddSeatsDto:
      type: object
      properties:
        seats:
          type: number
          description: Number of seats to add
          example: 10
      required:
        - seats
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: opaque
      type: http

````