Skip to main content

lib/slack/web/docs/groups.replies.json

{
	"desc": "Retrieve a thread of messages posted to a private channel.",

	"args": {
		"channel": {
			"type"		: "channel",
			"required"	: true,
			"desc"		: "Private channel to fetch thread from"
		},

		"thread_ts": {
			"required"	: true,
			"desc"		: "Unique identifier of a thread's parent message."
		}
	},

	"errors": {
		"channel_not_found"	: "Value passed for `channel` was invalid.",
    "thread_not_found": "Value for thread_ts was missing or invalid."
	}
}