Skip to main content
POST
/
search
/
tags
Search for tags. Up to 100 results will be returned.
curl --request POST \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/search/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>"
}'
{
  "data": [
    {
      "id": 123,
      "title": "<string>",
      "created_at": "2023-01-01T12:00:00Z",
      "updated_at": "2023-01-01T12:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
query
string

The search term to look for. Case insensitive.

Response

200 - application/json

Success

data
object[]