GET
/
products
/
{product_id}
/
tags
/
{tag_name}
Get a tag from this API Product
curl --request GET \
  --url http://localhost:3001/portal-api/products/{product_id}/tags/{tag_name} \
  --header 'Authorization: <api-key>'
{
  "Name": "monetization"
}

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

Example:

"monetization"

Response

Product tag was successfully retrieved

Name
string

Name of this tag

Example:

"monetization"