Skip to main content
POST
/
api
/
tags
/
{id}
/
link
Link a tag to a query
curl --request POST \
  --url https://api.mentionlab.io/api/tags/{id}/link \
  --header 'Content-Type: application/json' \
  --header 'x-organisation-id: <x-organisation-id>' \
  --header 'x-project-id: <x-project-id>' \
  --data '
{
  "queryId": "01234567-89ab-cdef-0123-456789abcdef"
}
'

Headers

x-organisation-id
string
required

Organisation ID to specify the organisation context

x-project-id
string
required

Project ID to specify the project context

Path Parameters

id
number
required

Body

application/json
queryId
string<uuid>
required

ID of the query to link the tag to

Example:

"01234567-89ab-cdef-0123-456789abcdef"

Response

204 - undefined