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

# Activate a signed quote

> Puts a signed quote into effect: requires `status` of `signed`. A new-business quote activates its subscription; an amendment publishes its phase onto the live subscription. Quotes with `auto_activate` take effect on their own once signed (a new-business quote at its contract start), so this is only needed for manual activation. The quote itself stays `signed` — read `subscription_id` to confirm the deal is live.



## OpenAPI

````yaml /api-reference/v2/specs/2026-04-01.json post /quotes/{id}/activate
openapi: 3.1.0
info:
  title: Alguna Public API
  version: '2026-04-01'
servers:
  - url: https://api.alguna.io
security:
  - bearerAuth: []
tags:
  - name: Billing Events and Metrics
  - name: Checkout Sessions
  - name: Credit Notes
  - name: Credits
  - name: Customer Portal Sessions
  - name: Customers
  - name: Insights
  - name: Integrations
  - name: Invoices
  - name: Merchants
  - name: Payments
  - name: Plans
  - name: Product Bundles
  - name: Products
  - name: Quotes
  - name: Refunds
  - name: Revenue Schedules
  - name: Subscription Changes
  - name: Subscription Versions
  - name: Subscriptions
  - name: Tags
  - name: Tax
  - name: Wallet Grants
  - name: Wallets
paths:
  /quotes/{id}/activate:
    post:
      tags:
        - Quotes
      summary: Activate a signed quote
      description: >-
        Puts a signed quote into effect: requires `status` of `signed`. A
        new-business quote activates its subscription; an amendment publishes
        its phase onto the live subscription. Quotes with `auto_activate` take
        effect on their own once signed (a new-business quote at its contract
        start), so this is only needed for manual activation. The quote itself
        stays `signed` — read `subscription_id` to confirm the deal is live.
      operationId: activate-quote
      parameters:
        - in: header
          name: Alguna-Version
          required: true
          schema:
            enum:
              - '2026-04-01'
            type: string
        - in: header
          name: Idempotency-Key
          schema:
            description: >-
              A unique string used to ensure the request is processed exactly
              once. If you retry a request with the same idempotency key within
              24 hours, the original response is returned without re-executing
              the operation.
            example: ik_a1b2c3d4e5f6
            maxLength: 255
            type: string
        - in: path
          name: id
          required: true
          schema:
            description: Unique identifier for the quote
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteResponse'
          description: Success
          headers:
            Idempotency-Key:
              description: Echo of the idempotency key provided in the request
              schema:
                type: string
            Idempotent-Replayed:
              description: >-
                Whether this response was replayed from a previous request
                (true) or freshly executed (false)
              schema:
                type: boolean
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not Found
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: >-
            Conflict — a request with this idempotency key is currently being
            processed
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unprocessable Entity
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
components:
  schemas:
    QuoteResponse:
      properties:
        auto_activate:
          description: >-
            Whether this quote takes effect on its own once signed; otherwise
            activate it with Activate a Signed Quote
          example: false
          type: boolean
        contract:
          allOf:
            - $ref: '#/components/schemas/ContractResponse'
          description: Term of the subscription this quote documents
        created_at:
          description: When the quote was created
          example: '2026-08-21T10:00:00Z'
          format: date-time
          type: string
        currency:
          description: ISO 4217 currency code
          example: USD
          type: string
        customer_id:
          description: Customer ID
          example: cust_abc123
          type: string
        expires_at:
          description: When the signing offer expires; null means it never expires
          example: '2026-09-30T23:59:59Z'
          format: date-time
          nullable: true
          type: string
        id:
          description: Quote ID
          example: qt_abc123
          type: string
        kind:
          description: Quote kind
          enum:
            - new
            - renewal
            - amendment
          example: new
          type: string
        name:
          description: >-
            Display name of the quote: its own override when one is set,
            otherwise the name of the subscription it documents
          example: Acme Platform 2026
          type: string
        signing_url:
          description: >-
            Hosted page where the customer reviews and signs. Present on a
            single quote while a customer signature is pending, so a lost link
            can be recovered; omitted on the list.
          example: https://acme.alguna.io/hs/elt_abc123
          nullable: true
          type: string
        status:
          description: Document status
          enum:
            - draft
            - pending_approval
            - sent
            - signed
            - rejected
            - withdrawn
            - expired
          example: draft
          type: string
        subscription_id:
          description: >-
            The subscription this quote creates or amends. Whether the deal is
            in effect is that subscription's state, not the quote's: read it, or
            its phases, once the quote is signed.
          example: sub_abc123
          type: string
        updated_at:
          description: When the quote was last updated
          example: '2026-08-21T10:00:00Z'
          format: date-time
          type: string
        withdrawal_reason:
          description: Reason recorded on withdrawal
          example: Superseded by revised terms
          nullable: true
          type: string
        withdrawn_at:
          description: When the quote was withdrawn, if withdrawn
          example: '2026-09-15T09:00:00Z'
          format: date-time
          nullable: true
          type: string
      required:
        - auto_activate
        - contract
        - created_at
        - currency
        - customer_id
        - id
        - kind
        - name
        - status
        - subscription_id
        - updated_at
      type: object
    ErrorResponse:
      properties:
        detail:
          type: string
        status:
          format: int64
          type: integer
      required:
        - status
        - detail
      type: object
    ContractResponse:
      properties:
        duration_months:
          description: Contract duration in months
          example: 12
          format: int64
          nullable: true
          type: integer
        end_date:
          description: Contract end date
          example: '2027-01-01T00:00:00Z'
          format: date-time
          nullable: true
          type: string
        period_type:
          description: Contract period type
          example: fixed
          type: string
        start_date:
          description: Contract start date
          example: '2026-01-01T00:00:00Z'
          format: date-time
          nullable: true
          type: string
      required:
        - period_type
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: API key authentication. Pass your API key as a Bearer token.
      scheme: bearer
      type: http

````