Search + K

Command Palette

Search for a command to run...

Sign In

admin_conversations_create

POST /admin.conversations.create
Copy endpoint
https://slack.com/api

Create a public or private channel-based conversation.

Parameters

header Header Parameters

Name Type
token required

Authentication token. Requires scope: admin.conversations:write

string

Request Body

application/x-www-form-urlencoded required
{
description?: string;
is_private: boolean;
name: string;
org_wide?: boolean;
team_id?: string;
}

Responses

200 application/json

Typical success response

{ channel_id?: DefsChannelId
type DefsChannelId = string
;ok: DefsOkTrue
type DefsOkTrue = true
; }
default application/json

Typical error response

{ error: "feature_not_enabled" | "name_taken" | "restricted_action" | "team_not_found" | "invalid_team" | "invalid_name" | "could_not_create_channel" | "team_id_or_org_required";ok: DefsOkFalse
type DefsOkFalse = false
; }