companyLocationDelete
mutation
接口访 问需要令牌,具体如何获取令牌参考:身份认证。
删除公司地点
Example
删除地点
Code
mutation companyLocationDelete($companyLocationId: ID!) {
companyLocationDelete(companyLocationId: $companyLocationId) {
deletedCompanyLocationId
userErrors {
code
field
message
}
}
}
Response
{
"data": {
"companyLocationDelete": {
"deletedCompanyLocationId": "gid://shopline/CompanyLocation/6464925548393537583",
"userErrors": []
}
}
}
这篇文章对你有帮助吗?