# Delete Parameter from a Parameter Group

## Remove parameter from a parameter group

> RemoveParameterFromGroup\
> Removes the association between a parameter definition and the specified parameter group.\
> The parameter definition itself is not deleted and can still be used with other groups.\
> Returns 204 No Content on successful removal.\
> Available for Operations accounts with helpdesk administration permissions.

```json
{"openapi":"3.0.1","info":{"title":"Marketplace API","version":"5.0.5102-g2bf281b6"},"servers":[{"url":"https://api.platform.softwareone.com"}],"paths":{"/public/v1/helpdesk/parameter-groups/{groupId}/parameters/{id}":{"delete":{"tags":["OrderedParameterDefinition"],"summary":"Remove parameter from a parameter group","description":"RemoveParameterFromGroup\nRemoves the association between a parameter definition and the specified parameter group.\nThe parameter definition itself is not deleted and can still be used with other groups.\nReturns 204 No Content on successful removal.\nAvailable for Operations accounts with helpdesk administration permissions.","parameters":[{"name":"groupId","in":"path","description":"The unique identifier of the parameter group","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","description":"The unique identifier of the parameter to remove","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"No Content"},"403":{"description":"Forbidden","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}},"500":{"description":"Internal Server Error"}}}}},"components":{"schemas":{"ProblemDetails":{"type":"object","properties":{"type":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"status":{"type":"integer","format":"int32","nullable":true},"detail":{"type":"string","nullable":true},"instance":{"type":"string","nullable":true}},"additionalProperties":{}}}}}
```
