Glowb Dev Docs
Main API관리자 결제 API

GET /admin/payments

결제 정보 조회 (intentKey)

결제 정보 조회 (intentKey)

intentKey로 특정 결제 정보를 조회합니다.

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

요청

GET /admin/payments?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",
    "amount": 50000,
    "status": "DONE",
    "createdAt": "2024-01-15T10:00:00",
    "approvedAt": "2024-01-15T10:00:30"
  }
}

API 테스트

On this page