POST
/
products
/
{product_id}
/
tags
Attach a tag to this API Product
curl --request POST \
  --url http://localhost:3001/portal-api/products/{product_id}/tags \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "Name": "monetization"
}'
{
  "Name": "monetization"
}

Authorizations

Authorization
string
header
required

Path Parameters

product_id
integer
required

UID of an API Product

Example:

1

Body

application/json
Name
string

Name of this tag

Example:

"monetization"

Response

The tag is successfully attached to the API Product

Name
string

Name of this tag

Example:

"monetization"