Skip to main content
POST
/
api
/
v1
/
link_tag_entity
Create Link Tag Entity
curl --request POST \
  --url 'https://api.example.com/api/v1/link_tag_entity?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entity_id": "<string>",
  "entity_type": "widget",
  "tag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "message": "Data created successfully",
  "meta": {},
  "data": {
    "entity_id": "<string>",
    "entity_type": "widget",
    "tag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Body

application/json
entity_id
string | null
required
entity_type
enum<string> | null
required
Available options:
widget,
data_source,
assistant,
form
tag_id
string<uuid> | null

Response

Successful Response

message
string | null
default:Data created successfully
meta
Meta · object
data
ILinkTagEntityCreate · object