본문으로 건너뛰기

선불카드 목록 조회

POST 

/purchase/open/prepaid-card/v1/queries/get-prepaid-card-summaries

선불카드 목록 조회

Request

### Content-Type별 요청의 JSON Schema

{
"application/json": {
"schema": {
"type": "object",
"properties": {
"visitorId": {
"type": "string"
},
"available": {
"type": "boolean"
}
},
"title": "protos.purchase.GetPrepaidCardSummariesQuery"
}
}
}

Responses

OK

### Status Code별 응답의 JSON Schema

{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"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"
},
"expirationDateTimeUtc": {
"type": "string"
},
"createdDateTimeUtc": {
"type": "string"
},
"ownerId": {
"type": "string"
},
"description": {
"type": "string"
},
"translsMap": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"translation": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"title": "protos.Transls"
},
"description": "*n # 다국어 지원대상 필드n - titlen - description"
}
},
"title": "protos.purchase.PrepaidCardSummaryContract"
}
}
},
"title": "protos.purchase.GetPrepaidCardSummariesQueryResponse"
}
}
}
}
}