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 Cancel

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

포인트 충전 가상계좌 채번 취소#

포인트 충전을 위해 채번한 가상계좌를 취소한다.

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 POST 'https://openapi.bunjang.co.kr/api/v1/points/issuance/123/cancel' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "id": "123",
        "amount": 0,
        "status": "WAITED",
        "createdAt": "2023-10-27T10:00:00",
        "modifiedAt": "2023-10-27T10:00:05",
        "preparedVbankInfo": {
            "vbankDueDate": "2023-10-28T23:59:59",
            "vbankAccountNumber": "451235741265",
            "bankName": "국민은행",
            "vbankHolderName": "번개장터"
        }
    }
}
🟠401INVALID_AUTH_TOKEN
🟠404NOT_FOUND_PAY_INBOUND
🟠400INVALID_PAY_INBOUND_STATUS
🟠400INVALID_PAY_STATUS
🟠400UPDATE_PAY_INBOUND_FAILURE
🔴500UNKWOWN_ERROR
🟠400IAMPORT_VBANK_EXPIRED_FAILURE
Modified at 2026-01-07 08:31:01
Previous
Point Issuance Lookup
Next
Create Order
Built with