# shopping-guide.delGuideCardMaterial

本接口应在服务器端调用,详细说明参见服务端API

删除小程序卡片素材

# 请求地址

POST https://api.weixin.qq.com/cgi-bin/guide/delguidecardmaterial?access_token=ACCESS_TOKEN

# 请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
type number 操作类型,填0,表示服务号素材
title string 小程序卡片名字
path string 小程序路径
appid string 必须填小程序的appid

# 返回值

# Object

属性 类型 说明
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明 最低版本
0 成功
-1 系统失败
9300821 appid不符合要求

# 请求数据示例

{
 "type": 0,
 "title": "xxxxx",
 "path": "xxxxxxxx",
 "appid":"xxxxxx"
}

# 返回数据示例

{
  "errcode": 0,
  "errmsg": "ok"
}