Bunjang Open API
  1. Point
Bunjang Open API
  • Overview
  • Changelog
  • Authentication
  • Product Catalog
    • Service Base URL
    • Sample Data
    • Full Catalog Download
      GET
    • Segment Catalog Download
      GET
  • Rest API
    • Service Base URL
    • Error Codes
    • Product Category
      • Categories Lookup
    • Brand
      • Brands Lookup
    • Product
      • Product Lookup
      • Products Retrieval
      • Get On-Sale Products
    • Point
      • Point Balance Lookup
        GET
      • Point Issuance Request
        POST
      • Point Issuance Lookup
        GET
      • Point Issuance Cancel
        POST
    • Order
      • Create Order
      • Confirm Order
      • Order Lookup
      • Orders Lookup
      • Create Order V2
  • Schemas
    • Product Condition
    • Product Active Sale Status
    • Order Status
  1. Point

Point Issuance Lookup

GET
https://openapi.bunjang.co.kr/api/v1/points/issuance/{id}

포인트 충전 내역 조회#

요청된 충전 내역의 정보를 조회한다.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi.bunjang.co.kr/api/v1/points/issuance/132' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "type": "object",
    "properties": {
        "data": {
            "type": "object",
            "properties": {
                "id": {
                    "type": "string",
                    "title": "충전 결제 건 id",
                    "examples": [
                        "123"
                    ]
                },
                "amount": {
                    "type": "integer",
                    "title": "금액",
                    "minimum": 0
                },
                "status": {
                    "type": "string",
                    "enum": [
                        "WAITED",
                        "READY",
                        "DONE",
                        "CANCELLED",
                        "FAIL"
                    ],
                    "x-apidog-enum": [
                        {
                            "value": "WAITED",
                            "name": "채번준비",
                            "description": ""
                        },
                        {
                            "value": "READY",
                            "name": "입금대기",
                            "description": ""
                        },
                        {
                            "value": "DONE",
                            "name": "처리완료",
                            "description": ""
                        },
                        {
                            "value": "CANCELLED",
                            "name": "취소",
                            "description": ""
                        },
                        {
                            "value": "FAIL",
                            "name": "실패",
                            "description": ""
                        }
                    ],
                    "title": "상태"
                },
                "createdAt": {
                    "type": "string",
                    "title": "생성일시",
                    "format": "date-time",
                    "examples": [
                        "2023-10-27T10:00:00"
                    ]
                },
                "modifiedAt": {
                    "type": "string",
                    "title": "변경일시",
                    "format": "date-time",
                    "examples": [
                        "2023-10-27T10:00:05"
                    ]
                },
                "preparedVbankInfo": {
                    "type": "object",
                    "properties": {
                        "vbankDueDate": {
                            "type": "string",
                            "format": "date-time",
                            "examples": [
                                "2023-10-28T23:59:59"
                            ],
                            "title": "가상계좌 입금 기한"
                        },
                        "vbankAccountNumber": {
                            "type": "string",
                            "title": "가상계좌 계좌번호",
                            "examples": [
                                "451235741265"
                            ]
                        },
                        "bankName": {
                            "type": "string",
                            "examples": [
                                "국민은행"
                            ],
                            "title": "은행명"
                        },
                        "vbankHolderName": {
                            "type": "string",
                            "examples": [
                                "번개장터"
                            ],
                            "title": "가상계좌 예금주"
                        }
                    },
                    "x-apidog-orders": [
                        "vbankDueDate",
                        "vbankAccountNumber",
                        "bankName",
                        "vbankHolderName"
                    ],
                    "required": [
                        "vbankDueDate",
                        "vbankAccountNumber",
                        "bankName",
                        "vbankHolderName"
                    ]
                }
            },
            "x-apidog-orders": [
                "id",
                "amount",
                "status",
                "createdAt",
                "modifiedAt",
                "preparedVbankInfo"
            ],
            "required": [
                "id",
                "amount",
                "status",
                "createdAt",
                "modifiedAt",
                "preparedVbankInfo"
            ],
            "title": "PayInboundResponse"
        }
    },
    "x-apidog-orders": [
        "data"
    ],
    "required": [
        "data"
    ]
}
🟠401INVALID_AUTH_TOKEN
🟠404NOT_FOUND_PAY_INBOUND
🔴500UNKWOWN_ERROR
Modified at 2026-01-08 05:12:34
Previous
Point Issuance Request
Next
Point Issuance Cancel
Built with