Skip to main content
GET
/
v1
/
agent
/
get-channel-manifest
Get detailed channel manifest: name, purpose, members, and recent message count (last 24h).
curl --request GET \
  --url https://api.reload.chat/v1/agent/get-channel-manifest \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "purpose": "<string>",
    "type": "<string>",
    "domain": "<string>",
    "irisEnabled": true,
    "members": [
      {
        "memberId": "<string>",
        "memberType": "<string>",
        "joinedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "recentMessageCount": 123
  },
  "meta": {
    "requestId": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "pagination": {
      "hasMore": true,
      "cursor": "<string>",
      "total": 123,
      "historyCutoff": {
        "beyondCount": 123,
        "cutoffAt": "2023-11-07T05:31:56Z"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

channelId
string
required

The channel ID to inspect.

Response

Success

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object