Payment
결제 히스토리 상세 조회
특정 결제 내역의 상세 정보를 조회합니다. 결제 상태, 취소 내역, 증빙서류 정보 등을 확인할 수 있습니다.
get/v2/payment/payment-histories/{historyId}
Path parameters
historyIdnumber nullable required
Example:1234567890
조회할 결제 내역의 ID입니다. 결제 히스토리 목록에서 받은 ID를 사용하세요.
Response
결제 히스토리 상세 조회 요청의 처리 결과입니다. 요청한 결제 내역의 모든 상세 정보가 포함됩니다.
Example response
{
"data": {
"history": {
"id": 12345,
"amount": 50000,
"proofDocumentId": "doc_123456",
"memo": "추가 할인 적용됨",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"expiredAt": "2024-02-15T10:30:00Z"
}
}
}