文档
测试

店铺信息变更(普通店)

POST
/webStore/v1/updateStoreInfo

请求头

参数名
类型
描述
必填
Content-Type
application/json
必填

请求参数

参数名
类型
描述
必填
storeId
String
店铺id
必填
storeName
String
店铺名
必填
mainCategory
String
主营类目
必填
storeType
String
店铺类型
必填
storeStatus
String
店铺状态
必填
extendedInfo
json
必填
businessExp
String
营业期限
必填
businessAddress
String
营业地址
必填
legalPersonName
String
法人姓名
必填
legalPersonPhone
String
法人手机
必填
businessLicenseImg
String
营业执照
必填
organizationCode
String
组织机构代码
必填
organizationCodeExp
String
组织机构代码有效期
必填
organizationCodeImg
String
组织机构代码证图片
必填
legalPersonCertificate
String
法人身份证号
必填
threeCertificatesInOne
boolean
是否三证合一
必填
legalPersonCertificateExp
String
法人身份证有效期
必填
legalPersonCertificateImg
map[]
法人身份证
必填
taxpayerIdentificationCode
String
纳税人识别码
必填
legalPersonTypeOfCertificate
String
法人身份证件类型
必填
taxRegistrationCertificateImg
String
税务登记证
必填
storeBusinessInfo
必填
urgentName
String
紧急联系人姓名
必填
urgentPhone
String
紧急联系人手机
必填
adminName
String
管理员姓名
必填
adminCertificate
String
管理员身份证号码
必填
adminAndLegalPerson
boolean
管理员与法人是否为同一人
必填
adminPhone
String
管理员手机
必填
adminCertificateExp
String
管理员身份证有效期
必填
adminCertificateImg
String
管理员身份证图片
必填

说明 / 示例

## urgentPhone字段是紧急联系人的手机号-验证码,作为一个字符串传,中间加 “-” 符号隔开 ## extendedInfo内的字段,没有变更的 传原数据,需要变更或重新上传的,把对应字段的原数据覆盖掉传就可以 ## 例:"businessLicenseImg": "https://.../.../营业执照.jpg" 更改为 "businessLicenseImg": "对应的base64编码的图片" ## 例2:不需要更改的情况下 "businessLicenseImg": "https://.../.../营业执照.jpg"保持不变 ## 例3:非三证合一变更为三证合一,不需要再上传组织机构代码证,此时原数据不传 ```language { "storeId":71, "storeName":"11111普通店测试", "mainCategory":"普通类目", "storeType":"normal", "storeStatus":"审核中", "extendedInfo":{ "businessExp": "营业期限", "businessAddress": "福建省-福州市-仓山区-xxx", "legalPersonName": "法人姓名", "legalPersonPhone": "12345678910", "organizationCode": "组织机构代码123123123", "storeBusinessInfo": { "urgentName":"紧急联系人姓名", "urgentPhone":"12345678910-111111", "adminName": "管理员姓名", "adminCertificate": "管理员身份证件号", "adminAndLegalPerson": true, "adminPhone":"12345678910", "adminCertificateExp": "管理员身份证件有效期 日期字符串 或 长期", "adminCertificateImg": { "管理员身份证1": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/-管理员身份证1-.jpg", "管理员身份证2": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/-管理员身份证2-.jpg" } }, "businessLicenseImg": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/营业执照.jpg", "organizationCodeExp": "组织机构代码有效期", "organizationCodeImg": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/组织机构代码证.jpg", "legalPersonCertificate": "法人身份证号", "threeCertificatesInOne": false, "legalPersonCertificateExp": "身份证有效期,日期字符串 或 长期", "legalPersonCertificateImg": { "法人身份证1": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/-法人身份证1-.jpg", "法人身份证2": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/-法人身份证2-.jpg" }, "taxpayerIdentificationCode": "纳税人识别码123123123", "legalPersonTypeOfCertificate": "身份证", "taxRegistrationCertificateImg": "https://norben-storage.oss-cn-hangzhou.aliyuncs.com/store/11111普通店测试/qualification/税务登记证.jpg" } } ```

响应

## code ```language VERIFICATION_CODE_ERROR(4004, "验证码错误") VERIFICATION_CODE_EXPIRED(4008, "验证码无效或已过期") SUCCESS(1000, "操作成功") ```