> ## 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 Recovery Email for Abandoned Cart

> Manually triggers a recovery email for the abandoned cart identified by the `cart_id` in the request body. Uses `x-store-id` for authentication and increments recovery email attempts.



## OpenAPI

````yaml /api-reference/growth-api.json post /abandoned-carts/trigger
openapi: 3.0.0
info:
  title: Growth API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /abandoned-carts/trigger:
    post:
      tags:
        - Abandoned Carts
      summary: Trigger Recovery Email for Abandoned Cart
      description: >-
        Manually triggers a recovery email for the abandoned cart identified by
        the `cart_id` in the request body. Uses `x-store-id` for authentication
        and increments recovery email attempts.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TriggerRecoveryEmailRequest'
      responses:
        '200':
          description: Recovery email triggered successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
      security:
        - storeIdHeader: []
components:
  schemas:
    TriggerRecoveryEmailRequest:
      type: object
      properties:
        cart_id:
          type: string
      required:
        - cart_id
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````