- Introduction
- API Request
- API Response
- Zones
- Flavors
- Images
- Instances
- Block Storages
- Bill
- Authentication
- Usage Example
- Firewall
Billing and Payment Detail
GET
https://api-kr.iwinv.kr/v1/bill/{bill_id}
Request
Path Params
bill_id
string
required
Header Params
X-iwinv-Timestamp
integer
required
Example:
{{timestamp}}
X-iwinv-Credential
string
required
Example:
{{accesskey}}
X-iwinv-Signature
string
required
Example:
{{signature}}
Request 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://api-kr.iwinv.kr/v1/bill/' \
--header 'X-iwinv-Timestamp: {{timestamp}}' \
--header 'X-iwinv-Credential: {{accesskey}}' \
--header 'X-iwinv-Signature: {{signature}}'
Responses
🟢200Success
application/json
Body
code
string
required
error_code
string
required
message
string
required
result
array [object {14}]
required
bill_id
string
optional
usage_start
string
optional
usage_end
string
optional
bill_date
string
optional
payment_status
string
optional
name
string
optional
price
integer
optional
vat
integer
optional
payment_price
integer
optional
currency
string
optional
date_paid
string
optional
invoice
array[string]
optional
tax
array[string]
optional
group
array [object {4}]
optional
count
integer
required
Example
{
"code": "0x00",
"error_code": "SUCCESS",
"message": "",
"result": [
{
"bill_id": "BILL-2maQCjuLeNFdjdtIybEMqf",
"usage_start": "2023-12-01",
"usage_end": "2023-12-31",
"bill_date": "2023-12-31",
"payment_status": "paid",
"name": "2023년 12월 정기 청구",
"price": 59100,
"vat": 5910,
"payment_price": 65010,
"currency": "KRW",
"date_paid": "2024-01-01",
"invoice": [],
"tax": [
"https://*******.iwinv.kr/finance/*************?no=*******************"
],
"group": [
{
"type": "서버",
"count": 1,
"sub_total": 5910,
"item": [
{
"service_id": "INSTANCE-7NzLIWdjNR4XmiihwKjPYi",
"name": "********-main[중요](49.247.***.***)",
"service": "INSTANCE",
"total": 59100,
"price": 59100,
"statue": "active",
"item": [
{
"branch": "서비스",
"type": "BILL",
"name": "********-main(49.247.***.***)",
"price": 54600,
"vat": 5460,
"sub_total": 60060,
"date_start": "2023-12-18",
"date_end": "2023-12-31",
"other": "이용 기간: 14일간"
},
{
"branch": "트래픽",
"type": "BILL",
"name": "트래픽 사용료(0GB)",
"price": 0,
"vat": 0,
"sub_total": 0,
"date_start": "2023-12-18",
"date_end": "2023-12-31",
"other": "기본 제공: 280 GB, 사용량: 0 GB"
},
{
"branch": "고객 알림",
"type": "BILL",
"name": "포트 모니터링",
"price": 4500,
"vat": 450,
"sub_total": 4950,
"date_start": "2023-12-18",
"date_end": "2023-12-31",
"other": "알림 횟수: 9 건"
}
]
}
]
}
]
}
],
"count": 1
}