檢索 Slack 的內容

擷取 Slack 的內容

Retrieve the contents of a discussion by ID. A discussion can be a Slack or Discord chat.

get

Returns the content of the discussion with the specified ID. A discussion can be a Slack or Discord chat. The response contains two fields: discussion_content, which includes the main messages of the chat, and thread_contents, which contains the threads of the discussion.

Path parameters
discussion_idintegerRequired

The ID of the discussion to retrieve contents for. Discussions are either Slack or Discord chats.

Query parameters
integration_typestringRequired

Indicate the integration of the discussion. Currently, it can only be "slack" or "discord".

fromstringOptional

Indicate the starting time when we want to retrieve the content of the discussion in ISO 8601 format at GMT+0. If not specified, the default time is now.

tostringOptional

Indicate the ending time when we want to retrieve the content of the discussion in ISO 8601 format at GMT+0. If not specified, it is 7 days before the "from" parameter.

Responses
200

Main and threaded messages of the discussion in a time range.

application/json
get
/discussions/{discussion_id}/contents/
GET /api/v1/discussions/{discussion_id}/contents/?integration_type=text HTTP/1.1
Host: api.rememberizer.ai
Accept: */*
{
  "discussion_content": "",
  "thread_contents": {}
}

範例請求

curl -X GET \
  "https://api.rememberizer.ai/api/v1/discussions/12345/contents/?integration_type=slack&from=2023-06-01T00:00:00Z&to=2023-06-07T23:59:59Z" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

YOUR_JWT_TOKEN 替換為您的實際 JWT 令牌,並將 12345 替換為實際的討論 ID。

獲取過去一週的 Slack 內容

to_date = datetime.now().isoformat() + "Z" from_date = (datetime.now() - timedelta(days=7)).isoformat() + "Z"

get_slack_contents(12345, from_date, to_date)


{% hint style="info" %}
將 `YOUR_JWT_TOKEN` 替換為您的實際 JWT 令牌,並將 `12345` 替換為實際的討論 ID。
{% endhint %}
{% endtab %}
{% endtabs %}

## 路徑參數

| 參數 | 類型 | 描述 |
|-----------|------|-------------|
| discussion_id | 整數 | **必填。** 要檢索內容的 Slack 頻道或討論的 ID。 |

## 查詢參數

| 參數 | 類型 | 描述 |
|-----------|------|-------------|
| integration_type | 字串 | **必填。** 設定為 "slack" 以檢索 Slack 內容。 |
| from | 字串 | 以 ISO 8601 格式表示的起始時間,位於 GMT+0。如果未指定,預設為現在。 |
| to | 字串 | 以 ISO 8601 格式表示的結束時間,位於 GMT+0。如果未指定,則為 "from" 參數的 7 天前。 |

## 回應格式

```json
{
  "discussion_content": "用戶 A [2023-06-01 10:30:00]: 早安,團隊!\n用戶 B [2023-06-01 10:32:15]: 早安!今天大家過得怎麼樣?\n...",
  "thread_contents": {
    "2023-06-01T10:30:00Z": "用戶 C [2023-06-01 10:35:00]: @用戶 A 我很好,謝謝你的關心!\n用戶 A [2023-06-01 10:37:30]: 很高興聽到這個 @用戶 C!",
    "2023-06-02T14:15:22Z": "用戶 D [2023-06-02 14:20:45]: 這是項目的更新...\n用戶 B [2023-06-02 14:25:10]: 謝謝你的更新!"
  }
}

錯誤回應

狀態碼
描述

404

找不到討論

500

內部伺服器錯誤

此端點檢索 Slack 頻道或直接消息對話的內容。它返回主要頻道消息(discussion_content)和串接回覆(thread_contents)。數據按時間順序組織,並包含用戶信息,使理解對話的上下文變得容易。

時間範圍參數允許您專注於特定時期,這對於回顧最近的活動或歷史討論特別有用。

Last updated