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

# Delete Redemption Code

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Monetization",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "paths": {
    "/redemption_codes/{id_or_code}": {
      "delete": {
        "summary": "Delete Redemption Code",
        "description": "",
        "tags": [
          "Redemption Codes"
        ],
        "operationId": "deleteRedemptionCode",
        "parameters": [
          {
            "name": "id_or_code",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID or Code of redemption code"
          }
        ],
        "responses": {
          "204": {
            "description": "Redemption Code deleted successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1redemption_codes/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Redemption Code not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1plans~1%7Bid%7D/get/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```