Skip to main content
PATCH
/
tags
/
{id}
Update a tag.
curl --request PATCH \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/tags/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123,
  "title": "<string>",
  "created_at": "2023-01-01T12:00:00Z",
  "updated_at": "2023-01-01T12:00:00Z"
}'
{
  "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.

Path Parameters

id
integer
required

Body

application/json

Used to further categorize profiles.

id
integer
title
string

Title of tag.

created_at
string<date-time> | null

Datetime when tag was created.

Example:

"2023-01-01T12:00:00Z"

updated_at
string<date-time> | null

Datetime when tag was last updated.

Example:

"2023-01-01T12:00:00Z"

Response

200 - application/json

Success

Used to further categorize profiles.

id
integer
title
string

Title of tag.

created_at
string<date-time> | null

Datetime when tag was created.

Example:

"2023-01-01T12:00:00Z"

updated_at
string<date-time> | null

Datetime when tag was last updated.

Example:

"2023-01-01T12:00:00Z"