> ## 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.

# Cancel a shared Amazon SES daily limit request

> Cancels a pending shared Amazon SES daily limit increase request for the caller's team. Approved or denied requests cannot be cancelled.



## OpenAPI

````yaml /openapi-app.json delete /providers/shared-amazon-ses-limit-request/{request_id}
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/shared-amazon-ses-limit-request/{request_id}:
    delete:
      tags:
        - Sending accounts
      summary: Cancel a shared Amazon SES daily limit request
      description: >-
        Cancels a pending shared Amazon SES daily limit increase request for the
        caller's team. Approved or denied requests cannot be cancelled.
      operationId: managementCancelSharedAmazonSesLimitRequest
      parameters:
        - in: path
          name: request_id
          required: true
          schema:
            description: Shared Amazon SES limit request public ID
            example: slir_clxxxxxxxxxxxxxxxxxxxxxxxxx
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SharedAmazonSesLimitRequestCancelResponse'
          description: Request cancelled
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Request not found
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Request has already been approved or denied
      security:
        - bearerAuth: []
components:
  schemas:
    SharedAmazonSesLimitRequestCancelResponse:
      allOf:
        - $ref: '#/components/schemas/SuccessEnvelope'
        - properties:
            data:
              $ref: '#/components/schemas/SharedAmazonSesLimitRequestCancel'
            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
    SharedAmazonSesLimitRequestCancel:
      additionalProperties: false
      properties:
        limit:
          $ref: '#/components/schemas/SharedAmazonSesLimit'
        request:
          $ref: '#/components/schemas/SharedAmazonSesLimitRequest'
      required:
        - request
        - 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
    SharedAmazonSesLimit:
      additionalProperties: false
      properties:
        can_request_increase:
          type: boolean
        daily_limit:
          minimum: 0
          type:
            - integer
            - 'null'
        is_near_limit:
          type: boolean
        pending_request_id:
          type:
            - string
            - 'null'
        provider_id:
          type:
            - string
            - 'null'
        sent_today:
          minimum: 0
          type: integer
        threshold_usage:
          minimum: 0
          type:
            - integer
            - 'null'
        usage_ratio:
          type:
            - number
            - 'null'
      required:
        - provider_id
        - daily_limit
        - sent_today
        - threshold_usage
        - usage_ratio
        - is_near_limit
        - can_request_increase
        - pending_request_id
      type: object
    SharedAmazonSesLimitRequest:
      additionalProperties: false
      properties:
        approved_daily_limit:
          exclusiveMinimum: 0
          type:
            - integer
            - 'null'
        created_at:
          type: string
        current_daily_limit:
          minimum: 0
          type: integer
        current_daily_sent:
          minimum: 0
          type: integer
        decided_at:
          type:
            - string
            - 'null'
        decision_note:
          type:
            - string
            - 'null'
        id:
          example: slir_clxxxxxxxxxxxxxxxxxxxxxxxxx
          type: string
        status:
          enum:
            - pending
            - approved
            - denied
            - cancelled
          type: string
      required:
        - id
        - status
        - current_daily_limit
        - current_daily_sent
        - approved_daily_limit
        - decision_note
        - created_at
        - decided_at
      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

````