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

# Issue a refund

> Programmatically issue a full or partial refund for an order.

**Usage:** Headless event organizers managing bulk ticket cancellations directly from their custom admin panel without logging into Blink.



## OpenAPI

````yaml post /orders/{id}/refund
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:
  /orders/{id}/refund:
    post:
      tags:
        - Orders
      summary: Issue a refund
      description: >-
        Programmatically issue a full or partial refund for an order.


        **Usage:** Headless event organizers managing bulk ticket cancellations
        directly from their custom admin panel without logging into Blink.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                amount:
                  type: number
                  description: Amount in cents to refund (optional, defaults to full)
                reason:
                  type: string
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad Request
        '401':
          description: Unauthorized

````