conversations_info
GET
/conversations.info https://slack.com/api
Retrieve information about a conversation.
Parameters
query Query Parameters
| Name | Type |
|---|---|
token Authentication token. Requires scope: | string |
channel Conversation ID to learn more about | string |
include_locale Set this to | boolean |
include_num_members Set to | boolean |
Responses
200 application/json
Typical success response for a public channel. (Also, a response from a private channel and a multi-party IM is very similar to this example.)
{ channel: ObjsConversation ;ok: DefsOkTrue ; }
default application/json
Typical error response when a channel cannot be found
{
callstack?: string;
error: "missing_scope" | "channel_not_found" | "team_added_to_org" | "not_authed" | "invalid_auth" | "account_inactive" | "invalid_arg_name" | "invalid_array_arg" | "invalid_charset" | "invalid_form_data" | "invalid_post_type" | "missing_post_type" | "invalid_json" | "json_not_object" | "request_timeout" | "upgrade_required";
needed?: string;
ok:DefsOkFalse ;
provided?: string;
}
callstack?: string;
error: "missing_scope" | "channel_not_found" | "team_added_to_org" | "not_authed" | "invalid_auth" | "account_inactive" | "invalid_arg_name" | "invalid_array_arg" | "invalid_charset" | "invalid_form_data" | "invalid_post_type" | "missing_post_type" | "invalid_json" | "json_not_object" | "request_timeout" | "upgrade_required";
needed?: string;
ok:
provided?: string;
}