---
id: parameter-value-delete
title: "Delete a parameter value"
description: "Deletes a specific parameter value."
sidebar_label: "Delete a parameter value"
hide_title: true
hide_table_of_contents: true
api: eJzdVttu4zYQ/RVinnYB1XZufdBbuknRFH0Idh3sAkkQjMWxxV2K1JKjNKmgfy+GkuVbsF0EvQD1gyzTJM+ZwzmcaUFTLIKp2XgHOVyQJaaoUMWaCrM0haoxYEVMQT2ibWgCGYxDEfLbFhxWBPlm9EpDBsalIS4h28OYl6SuLpRfKi5ps71sHOhrYwJpyDk0lEEsSqoQ8hb4uRaMyMG4FXQZ0BNWtSXIj45PumwkYV6F3Yem2CudBHgtl9OzH7v7DHxNAQXxSm/r8pBQ8h4CMmBciYBwvZ4A9wIba+8iRUE6np3K12EMI4L6HaOKTVFQjMvGToTO6adPh6veWUOOFYXggxpBlO7DNu4RrdHKuLph5YOqTIzGrTYSRdGk8I7JseyOdW1NkThMP0eBaA8l8ovPVPCOmLcQGbmJ77wWDRIfyKCiGHFFokAdJDo2vQRbszf7Gse0onBwvL/M59eqX6EKr0kFqgNFciyxyJGPaV1s6/GGJqtJpk5nM3kcyeNEHqdvJerN8c5mnYiww2VIg30q56rCojSOfgiEGheWBqzEi0tkVSDTygfzB8WeG4VHCmqJxjaBdpBhgfpBRKTIKeOSbN9BYhEMLTNVNhW6DZOtWWsv9ORku7Uad/ATavW+B70DGbhx2HCZKOs72BVne7ZQXJ/oX5PU2sgrWqWJ0diocOEb3tDaxZH8H6RI2V+hXfpQkVZJXcdoHOkxpbczuEufDM5ecsiHXv59hxinU567lUKnTIwNKe8SufPrKxWNpv+ZNeK2EEMynIk1zmbH8jjZPfiz/84VEmxwaB/6SQ+9ZP+aP64GeDWkzqXM6Z0iI6YgdePwEY2VXQ8M8+Lyf9Q65041jp5qKpj0EJIviiYE0hN1bQkjKQ7PCldonLKY6nK3tk2kogmGn1PVXxAGCucNl5Df3kvZq4hLLxVvrHCpBucwHT04bbe6hG6aCuK0NboD2V1U6FuKJljIoWSuYz6dYm0mrrG2tshi9UnhKxDENaEP4q7eFNu0RvlkIxhKeLpN0yTIhpeffaiQIYdfP85BAjVu6WW58OmVPprMJjOp2YaTktebFqjLoPaRK0xGH/qQvpFSuN9j7B9hu7k4vrP5GkJieuJpbdE4IZD0age9bzctB2SQ7/Zlaxa50XKjlD6yrGjbBUa6CbbrZPhrQ0GO+V4WBCPpm85FmyjvGvIl2kjfCObN++Fee6u+0fC9GMwwiO555JsDZPCFnvfaTGn8/k5KL/WBr6BoNHT3XQYloaaQhOv/OC8KqnlryUGp2PHRxeVvl/NLyAB303kvfRPAi4zatp8x91/Idd1IkOW3cOy6PwE9ECHv
sidebar_class_name: "delete api-method"
info_path: docs/api/parameters
custom_edit_url: null
---

import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
import ParamsDetails from "@theme/ParamsDetails";
import RequestSchema from "@theme/RequestSchema";
import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
import Heading from "@theme/Heading";

<Heading
  as={"h1"}
  className={"openapi__heading"}
  children={"Delete a parameter value"}
>
</Heading>

<MethodEndpoint
  method={"delete"}
  path={"/parameter/{parameterId}/value/{id}"}
  context={"endpoint"}
>
  
</MethodEndpoint>



Deletes a specific parameter value.

<Heading
  id={"request"}
  as={"h2"}
  className={"openapi-tabs__heading"}
  children={"Request"}
>
</Heading>

<ParamsDetails
  parameters={[{"name":"parameterId","in":"path","description":"The ID of the parameter.","required":true,"schema":{"type":"string"},"example":123},{"name":"id","in":"path","description":"The ID of the parameter value to delete.","required":true,"schema":{"type":"string"},"example":456}]}
>
  
</ParamsDetails>

<RequestSchema
  title={"Body"}
  body={undefined}
>
  
</RequestSchema>

<StatusCodes
  id={undefined}
  label={undefined}
  responses={{"204":{"description":"The operation was successful."},"4XX":{"description":"Client error responses due to invalid input or missing parameters.","content":{"application/json":{"schema":{"type":"object","required":["statusCode","error","message"],"properties":{"statusCode":{"type":"integer","description":"HTTP status code representing the specific client error (e.g., 400, 401, 403, 404).","example":400},"code":{"type":"string","description":"A machine-readable error code that categorizes the server failure.","example":"bad_request"},"error":{"type":"string","description":"A brief, human-readable description of the error type (e.g., \"Bad Request\", \"Unauthorized\").","example":"Bad Request"},"message":{"type":"string","description":"Additional details about the error.","example":"The request was malformed or contained invalid parameters."}}}}}},"5XX":{"description":"Server error responses indicating an issue on the API side.","content":{"application/json":{"schema":{"type":"object","required":["statusCode","error","message"],"properties":{"statusCode":{"type":"integer","description":"HTTP status code representing the specific server error (e.g., 500, 502, 503).","example":500},"code":{"type":"string","description":"A machine-readable error code that categorizes the server failure.","example":"internal_server_error"},"error":{"type":"string","description":"A brief, human-readable description of the error type (e.g., \"Internal Server Error\", \"Service Unavailable\").","example":"Internal Server Error"},"message":{"type":"string","description":"Additional details about the error.","example":"An unexpected error occurred. Please try again later."}}}}}}}}
>
  
</StatusCodes>


      