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

# Request a sending account limit increase

> Creates a request to increase the number of custom or connected sending accounts allowed for the team.



## OpenAPI

````yaml /openapi-app.json post /providers/limits/sending-accounts/request-increase
openapi: 3.1.0
info:
  description: Programmatic access to your Sendmux email infrastructure.
  title: Sendmux API
  version: 1.0.0
servers:
  - description: API v1
    url: https://app.sendmux.ai/api/v1
security:
  - bearerAuth: []
paths:
  /providers/limits/sending-accounts/request-increase:
    post:
      tags:
        - Sending accounts
      summary: Request a sending account limit increase
      description: >-
        Creates a request to increase the number of custom or connected sending
        accounts allowed for the team.
      operationId: managementRequestSendingAccountLimitIncrease
      parameters:
        - in: header
          name: Idempotency-Key
          required: false
          schema:
            description: >-
              Client-chosen unique key to safely retry the request. Cached for
              24h per (team, endpoint, key). Different body with same key
              returns 409 idempotency_conflict.
            example: providers-create-20260525-001
            maxLength: 255
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendingAccountLimitRequestResponse'
          description: Request submitted
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: A request is already pending
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Increase request is not available yet
      security:
        - bearerAuth: []
components:
  schemas:
    SendingAccountLimitRequestResponse:
      allOf:
        - $ref: '#/components/schemas/SuccessEnvelope'
        - properties:
            data:
              $ref: '#/components/schemas/SendingAccountLimitRequest'
            meta:
              $ref: '#/components/schemas/ResponseMeta'
          required:
            - data
          type: object
      unevaluatedProperties: false
    ApiError:
      additionalProperties: false
      properties:
        error:
          additionalProperties: false
          properties:
            code:
              description: Machine-readable error code
              enum:
                - invalid_parameter
                - missing_parameter
                - authentication_required
                - insufficient_permissions
                - not_found
                - conflict
                - limit_exceeded
                - idempotency_conflict
                - payload_too_large
                - validation_error
                - rate_limit_exceeded
                - service_unavailable
                - internal_error
              example: invalid_parameter
              type: string
            doc_url:
              description: Link to relevant documentation
              type: string
            errors:
              description: >-
                Accumulated per-field issues for validation errors. Only present
                on 400/422 responses.
              items:
                $ref: '#/components/schemas/ApiErrorDetail'
              type: array
            message:
              description: Human-readable error description
              type: string
            param:
              description: The parameter that caused the error
              type: string
            retryable:
              description: >-
                Whether the caller may safely retry this request. 4xx are
                typically false (except 429); 5xx are typically true.
              example: false
              type: boolean
          required:
            - code
            - message
            - retryable
          type: object
        meta:
          additionalProperties: false
          properties:
            request_id:
              example: req_clxxxxxxxxxxxxxxxxxxxxxxxxx
              type: string
          required:
            - request_id
          type: object
        ok:
          enum:
            - false
          type: boolean
      required:
        - ok
        - error
        - meta
      type: object
    SuccessEnvelope:
      properties:
        meta:
          additionalProperties: {}
          properties: {}
          type: object
        ok:
          enum:
            - true
          type: boolean
      required:
        - ok
        - meta
      type: object
    SendingAccountLimitRequest:
      additionalProperties: false
      properties:
        limit:
          $ref: '#/components/schemas/ResourceLimitSnapshot'
        request_id:
          example: trir_clxxxxxxxxxxxxxxxxxxxxxxxxx
          type: string
      required:
        - request_id
        - limit
      type: object
    ResponseMeta:
      additionalProperties: false
      properties:
        request_id:
          example: req_clxxxxxxxxxxxxxxxxxxxxxxxxx
          type: string
      required:
        - request_id
      type: object
    ApiErrorDetail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Machine-readable issue code from the validator (e.g. zod issue
            code).
          example: invalid_string
          type: string
        field:
          description: Dot-path of the offending request field.
          example: recipient.email
          type: string
        message:
          description: Human-readable issue description.
          type: string
      required:
        - field
        - code
        - message
      type: object
    ResourceLimitSnapshot:
      additionalProperties: false
      properties:
        can_request_increase:
          type: boolean
        is_at_limit:
          type: boolean
        is_near_limit:
          type: boolean
        max_allowed:
          exclusiveMinimum: 0
          type: integer
        pending_request_id:
          type:
            - string
            - 'null'
        reserved:
          minimum: 0
          type: integer
        resource_type:
          example: sending_accounts
          type: string
        threshold_usage:
          minimum: 0
          type: integer
        usage:
          minimum: 0
          type: integer
        usage_ratio:
          type: number
      required:
        - resource_type
        - usage
        - max_allowed
        - reserved
        - threshold_usage
        - usage_ratio
        - is_at_limit
        - is_near_limit
        - can_request_increase
        - pending_request_id
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: >-
        Sendmux API key. Use a root API key for Management API routes, or a
        mailbox credential for Mailbox API routes. Obtain keys from the
        dashboard under API Keys.
      scheme: bearer
      type: http

````