conversations_join
POST
/conversations.join https://slack.com/api
Joins an existing conversation.
Parameters
header Header Parameters
| Name | Type |
|---|---|
token Authentication token. Requires scope: | string |
Request Body
application/x-www-form-urlencoded
{ channel?: string; }
Responses
200 application/json
Typical success response
{
channel:ObjsConversation ;
ok:DefsOkTrue ;
response_metadata?: { warnings?: string[]; };
warning?: string;
}
channel:
ok:
response_metadata?: { warnings?: string[]; };
warning?: string;
}
default application/json
Typical error response if the conversation is archived and cannot be joined
{
callstack?: string;
error: "method_not_supported_for_channel_type" | "missing_scope" | "channel_not_found" | "is_archived" | "not_authed" | "invalid_auth" | "account_inactive" | "user_is_bot" | "user_is_restricted" | "user_is_ultra_restricted" | "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" | "team_added_to_org" | "missing_charset" | "superfluous_charset";
needed?: string;
ok:DefsOkFalse ;
provided?: string;
}
callstack?: string;
error: "method_not_supported_for_channel_type" | "missing_scope" | "channel_not_found" | "is_archived" | "not_authed" | "invalid_auth" | "account_inactive" | "user_is_bot" | "user_is_restricted" | "user_is_ultra_restricted" | "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" | "team_added_to_org" | "missing_charset" | "superfluous_charset";
needed?: string;
ok:
provided?: string;
}