GET api/Telegram/GetChatClassification/{id}

Метод для отримання класифікації чату

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ChatClassificationRaw
NameDescriptionTypeAdditional information
Id

Id сообщения

integer

None.

Created

Дата сообщения

date

None.

Employee

Код сотрудника

integer

None.

Chat

Chat Id

integer

None.

Code

AgreementCode

integer

None.

House

House Id

integer

None.

Classification

Classification type

string

None.

Comment

Comment for data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Created": "2025-09-02T23:18:01.7903797+00:00",
  "Employee": 3,
  "Chat": 4,
  "Code": 1,
  "House": 1,
  "Classification": "sample string 5",
  "Comment": "sample string 6"
}

application/xml, text/xml

Sample:
<ChatClassificationRaw xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Data.Repositories.Telegram">
  <Chat>4</Chat>
  <Classification>sample string 5</Classification>
  <Code>1</Code>
  <Comment>sample string 6</Comment>
  <Created>2025-09-02T23:18:01.7903797+00:00</Created>
  <Employee>3</Employee>
  <House>1</House>
  <Id>1</Id>
</ChatClassificationRaw>