DELETE
/
products
/
{product_id}
/
tags
/
{tag_name}
Delete a tag from this API Product
curl --request DELETE \
  --url http://localhost:3001/portal-api/products/{product_id}/tags/{tag_name} \
  --header 'Authorization: <api-key>'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Path Parameters

product_id
integer
required

UID of an API Product

Example:

1

tag_name
string
required

Name of the tag to delete

Example:

"foo"

Response

Tag successfully deleted from the API Product

status
string

Status of the operation

Example:

"ok"