Glowb Dev Docs
Main API관리자 결제 API

GET /admin/payments/failures

실패 기록 조회 (intentKey)

실패 기록 조회 (intentKey)

intentKey로 특정 결제의 실패 기록을 조회합니다.

항목
메서드GET
경로/admin/payments/failures
인증필요 (관리자 권한)

요청

GET /admin/payments/failures?intentKey={intentKey}
Authorization: Bearer {access_token}

Query Parameters

파라미터타입필수설명
intentKeystring결제 키

응답

성공 응답 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "결제 실패 기록 조회 성공",
  "data": {
    "id": 1,
    "intentKey": "intent_xxxxxxxxxxxxx",
    "orderId": "ORDER_001",
    "errorCode": "PAYMENT_FAILED",
    "errorMessage": "결제 실패",
    "createdAt": "2024-01-15T10:00:00"
  }
}

API 테스트

On this page