청구 정보 조회¶
GET /api/v1/billing/detail/list
개요¶
Query 요청 파라미터¶
| 파라미터명 | 유형 | 필수 | 설명 |
|---|---|---|---|
| startDate | string | 청구 시작일. 형식: 20230731 예시: 20230731 빈 값 허용: False |
|
| endDate | string | 청구 종료일. 형식: 20230731 예시: 20230731 빈 값 허용: False |
파라미터 추가 설명¶
응답 파라미터 설명:
content 본문 구조 설명
| 파라미터명 | 파라미터 설명 |
|---|---|
| consumeTimeOfDay | 청구 소비 일자 |
| orgName | 청구 센터 조직 이름, 무시 가능 |
| productName | 상품 이름, 고정값 dataFlux |
| productDetail | 상품 상세 |
| billingKey | 청구 유형의 key |
| billingCycle | 결제 주기: 일(Day), 월(Month), 년(Year), 단일(Single) |
| billingResult | 미지급 금액 |
| deductionAmount | 차감 금액 |
| oweAmount | 미납 금액 |
| originAmount | 원가 |
| serviceBillingAmount | 서비스 요금, 무시 가능 |
| couponAmount | 바우처 차감 |
| storedCardAmount | 선불 카드 차감 |
| cashAmount | 현금 차감 |
| cashCouldAmount | 클라우드 마켓 차감 |
| commodityCategory | 상품 유형: 선불(包年包月), 종량제(按量付费) |
| consumePlatform | 결제 방식 |
| customerIdentifier | 클라우드 마켓 계정 |
| consumption | 무시 가능 |
| workspaceUuid | 워크스페이스 UUID |
| workspaceName | 워크스페이스 이름 |
| consumeTime | 소비 시간 타임스탬프 |
| billingResultDetails | 무시 가능 |
| count | 사용량 |
요청 예시¶
curl 'https://openapi.guance.com/api/v1/billing/detail/list' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--compressed
응답¶
{
"code": 200,
"content": [
{
"consumeTimeOfDay": "2023-07-31",
"orgName": "None",
"productName": "None",
"productDetail": "Session Replay",
"billingCycle": "None",
"billingResult": 0,
"deductionAmount": "None",
"oweAmount": "None",
"originAmount": 0,
"serviceBillingAmount": "None",
"couponAmount": "None",
"storedCardAmount": "None",
"cashAmount": "None",
"cashCouldAmount": "None",
"commodityCategory": "None",
"consumePlatform": "None",
"customerIdentifier": "None",
"consumption": "None",
"workspaceUuid": "None",
"workspaceName": "None",
"consumeTime": "None",
"tag6": "session_replay",
"billingResultDetails": "None",
"count": 0
}
],
"errorCode": "",
"message": "",
"success": true,
"traceId": "TRACE-192EB1B1-ACBA-4942-A4F1-34A1A9F93C0C"
}