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

# Claim an upsell offer

> Processes the off-session charge for an accepted upsell using the original order's payment intent. This automatically provisions deliverables and assigns them to the original order.



## OpenAPI

````yaml post /upsells/{id}/claim
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /upsells/{id}/claim:
    post:
      tags:
        - Upsells
      summary: Claim an upsell offer
      description: >-
        Processes the off-session charge for an accepted upsell using the
        original order's payment intent. This automatically provisions
        deliverables and assigns them to the original order.
      parameters:
        - name: id
          in: path
          description: The ID of the upsell being claimed
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - payment_intent_id
              properties:
                payment_intent_id:
                  type: string
                  description: The Stripe Payment Intent ID of the original purchase
                idempotency_key:
                  type: string
                  description: Optional idempotency key to prevent double charging
      responses:
        '200':
          description: Upsell successfully claimed
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      payment_intent_id:
                        type: string
                      status:
                        type: string

````