# shopping-guide.delGuideImageMaterial

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

删除图片素材

# 请求地址

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

# 请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
type number 操作类型,填0,表示服务号素材
picurl string 图片素材内容

# 返回值

# Object

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

errcode 的合法值

说明 最低版本
0 成功
-1 系统失败

# 请求数据示例

{
	 "type": 0,
 "picurl": "xxxx"
}

# 返回数据示例

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