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

# Trigger a recovery email

> Manually sends a recovery email for a specified abandoned cart. This endpoint can be used to re-initiate customer communication for carts awaiting recovery.

**Usage:** Directly reach out to customers who have left items in their carts, potentially increasing order completion rates.



## OpenAPI

````yaml post /cart-recovery/trigger
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:
  /cart-recovery/trigger:
    post:
      tags:
        - Cart Recovery
      summary: Trigger a recovery email
      description: >-
        Manually sends a recovery email for a specified abandoned cart. This
        endpoint can be used to re-initiate customer communication for carts
        awaiting recovery.


        **Usage:** Directly reach out to customers who have left items in their
        carts, potentially increasing order completion rates.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecoveryTriggerRequest'
      responses:
        '200':
          description: Email sent successfully
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    RecoveryTriggerRequest:
      type: object
      properties:
        cart_id:
          type: string
      required:
        - cart_id

````