简要描述:

  • 话术库-获取分组信息

请求域名:

  • http://xx.com

请求URL:

xx.com/business/{公众号id}/plugin/SpeechcraftLibrary/getGroupInfo

请求类型

POST

参数:

参数名 是否必须 类型 说明
group_id int 分组id

返回示例:

正确时返回:

{
	"result": 1,
	"msg": "成功",
	"data": {
		"id": 2,
		"group_name": "哈哈哈",
		"created_at": "2022-02-09 17:04:44",
		"parent_id": "1",
		"permission": [
			[
				"type": "staff",
				"id": 1,
				"name": 员工名称
			],
			[
				"type": "department",
				"id": 1,
				"name": 部门名称
			]
		]
	}
}

返回参数说明:

参数名 类型 说明
id int 分组id
group_name string 分组名称
parent_id int 父级id 有父级id的就是二级分类,二级分类不需要显示可见范围
permission[][type] string 权限类型,staff员工、department部门
permission[][id] int 员工或部门id