Skip to main content
GET
/
templates
/
{id}
Show template by ID.
curl --request GET \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "category": "<string>",
    "name": "<string>",
    "text": "Name of profile is $name$.",
    "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

Response

200 - application/json

Success

data
object

Template to store text with placeholders.