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

# getPlanQuotaAndCost



## OpenAPI

````yaml get /getPlanQuotaAndCost
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /getPlanQuotaAndCost:
    get:
      tags:
        - EzzyRest
      summary: getPlanQuotaAndCost
      operationId: getPlanQuotaAndCost
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PlanQuotaSS'
            application/json:
              schema:
                $ref: '#/components/schemas/PlanQuotaSS'
            text/json:
              schema:
                $ref: '#/components/schemas/PlanQuotaSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    PlanQuotaSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        plans:
          type: array
          items:
            $ref: '#/components/schemas/PlanQuota'
    Servicestatus:
      type: object
      properties:
        invoice_id:
          type: integer
        message:
          type: string
        status:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
          x-enumNames:
            - OK
            - FAILED
            - NO_MORE_INVOICES
            - NOT_PERMITTED
    PlanQuota:
      type: object
      properties:
        amount:
          type: number
        amountInCents:
          type: integer
        currency:
          type: string
        currencyLetter:
          type: string
        planName:
          type: string
        quota:
          type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````