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

# Delete parameters for rules

> Removes parameter from a rule for a given card. Default parameter on rule will be used when processing rule for the card.



## OpenAPI

````yaml json-files/standard-spend-control-v1.openapi.json delete /v1/rules/{rule-id}/parameters/{card-id}/card
openapi: 3.0.3
info:
  title: Standard Spend Control API
  description: API for managing standard spend control rules
  version: 1.0.0
servers:
  - url: https://api.{{tenant}}.ext-uat1-sandbox.mycore.enfuce.com/processor
    description: UAT Sandbox
  - url: https://api.{{tenant}}.eu.live.prod.mycore.enfuce.com/processor
    description: Production
security: []
tags:
  - name: RuleSets
    description: Rule Sets are collections of rules bound the entities.
  - name: Rules
    description: >
      Rules define the actual spend control rule that is applied to request.
      Rules can have filter that determine if  the rule should be processed.
  - name: Parameters
paths:
  /v1/rules/{rule-id}/parameters/{card-id}/card:
    delete:
      tags:
        - Rules
      description: >-
        Removes parameter from a rule for a given card. Default parameter on
        rule will be used when processing rule for the card.
      operationId: deleteRuleParameter
      parameters:
        - name: rule-id
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/Id'
        - name: card-id
          in: path
          required: true
          schema:
            type: string
          description: Id of the card.
          example: a8d8374f-0fd2-444d-a331-c345bf4948da
      responses:
        '200':
          description: Successful operation
components:
  schemas:
    Id:
      type: integer
      format: int64

````