> ## Documentation Index
> Fetch the complete documentation index at: https://next-developers.opencard.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete callback request



## OpenAPI

````yaml /openapi/receipts-api.json delete /api/v1/marcet/callbackrequests/{callbackRequestId}
openapi: 3.0.3
info:
  title: OpenCard Digital Receipts API
  version: '1.0'
  description: >-
    Card issuers submit transaction data for digital receipt matching. Hosted at
    receipts.opencard.io.
  contact:
    email: support@opencard.io
servers:
  - url: https://receipts.opencard.io
    description: Digital Receipts Service
security: []
tags:
  - name: Publishers
    description: Merchants with active digital receipts
  - name: Callback Requests
    description: Submit transactions for receipt matching
paths:
  /api/v1/marcet/callbackrequests/{callbackRequestId}:
    delete:
      tags:
        - Callback Requests
      summary: Delete callback request
      operationId: deleteCallbackRequest
      parameters:
        - name: callbackRequestId
          in: path
          required: true
          description: Callback request ID
          schema:
            type: string
      responses:
        '204':
          description: Deleted
          content:
            application/json: {}
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````