내원객 선불카드 잔액 조회
POST/purchase/open/prepaid-card/v1/queries/get-visitor-prepaid-card-balance
내원객 선불카드 잔액 조회
Request
### Content-Type별 요청의 JSON Schema
{
"application/json": {
"schema": {
"type": "object",
"properties": {
"visitorId": {
"type": "string"
}
},
"title": "protos.purchase.GetVisitorPrepaidCardBalanceQuery"
}
}
}
Responses
- 200
OK
### Status Code별 응답의 JSON Schema
{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"remainingBalance": {
"type": "object",
"properties": {
"balance": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"format": "int32"
},
"currency": {
"type": "string"
}
},
"title": "protos.procedure.PriceAmount"
},
"total": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"format": "int32"
},
"currency": {
"type": "string"
}
},
"title": "protos.procedure.PriceAmount"
}
},
"title": "protos.purchase.PrepaidCardAmount"
},
"remainingPoint": {
"type": "object",
"properties": {
"balance": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"format": "int32"
},
"currency": {
"type": "string"
}
},
"title": "protos.procedure.PriceAmount"
},
"total": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"format": "int32"
},
"currency": {
"type": "string"
}
},
"title": "protos.procedure.PriceAmount"
}
},
"title": "protos.purchase.PrepaidCardAmount"
}
},
"title": "protos.purchase.VisitorPrepaidCardBalanceContract"
}
},
"title": "protos.purchase.GetVisitorPrepaidCardBalanceQueryResponse"
}
}
}
}
}