Skip to content

Commit

Permalink
2024-04-25 웹훅에 storeId 필드 추가 (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwiyou authored Dec 17, 2024
1 parent f3a7ab4 commit c379ec2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/routes/(root)/opi/ko/integration/webhook/readme-v2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ Webhook을 활용하면 커스텀 기능이나 다른 애플리케이션과 연
고객사 서버가 웹훅을 수신하는 데 실패하여 재시도가 일어나도 이 값은 동일하게 유지됩니다.

- `data`: 웹훅을 트리거한 이벤트의 실제 세부 내용입니다. `type` 에 따라 해당 필드의 스키마가 달라질 수 있으며, `type` 별 상세 스키마는 아래와 같습니다.
- **공통**
- `storeId`: 웹훅을 트리거한 상점의 아이디입니다.

- **결제 관련**
- `paymentId`: 고객사에서 채번한 결제 건의 고유 주문 번호입니다.
- `transactionId`: 포트원에서 채번한 고유 거래 번호입니다. 한 결제 건에 여러 시도가 있을 경우 transactionId가 달라질 수 있습니다.
Expand All @@ -92,6 +95,7 @@ Webhook을 활용하면 커스텀 기능이나 다른 애플리케이션과 연
"timestamp": "2024-04-25T10:00:00.000Z",
"data": {
"paymentId": "example-payment-id",
"storeId": "store-ae356798-3d20-4969-b739-14c6b0e1a667",
"transactionId": "55451513-9763-4a7a-bb43-78a4c65be843",
"cancellationId": "0cdd91e9-4e7c-44a3-a72e-1a6511826c2b"
}
Expand All @@ -105,6 +109,7 @@ Webhook을 활용하면 커스텀 기능이나 다른 애플리케이션과 연
"type": "BillingKey.Issued",
"timestamp": "2024-04-25T10:00:00.000Z",
"data": {
"storeId": "store-61e0db3d-b967-47db-8b50-96002da90d55",
"billingKey": "billing-key-75ae3cab-6afe-422d-bf34-3a7b1762451d"
}
}
Expand Down

0 comments on commit c379ec2

Please sign in to comment.