마케팅 수신 동의 해제
POST/visitor/open/v1/commands/disable-advertising-agreement-to-visitors
마케팅 수신 동의를 해제합니다.
Request
### Content-Type별 요청의 JSON Schema
{
"application/json": {
"schema": {
"required": [
"phoneNumber"
],
"type": "object",
"properties": {
"phoneNumber": {
"type": "string",
"description": "전화번호"
}
},
"title": "protos.open.DisableAdvertisingAgreementToVisitorsCommand"
}
}
}
Responses
- 200
OK
### Status Code별 응답의 JSON Schema
{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {},
"title": "protos.Empty"
}
}
}
}
}