Skip to content

Commit f2fdb7c

Browse files
authored
Add counterparty delivery status to the outgoing transaction object (#241)
1 parent 66f813e commit f2fdb7c

8 files changed

Lines changed: 35 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ When the payment status changes (to completed or failed), your platform will rec
310310
"description": "Payment for invoice #1234",
311311
"exchangeRate": 0.92,
312312
"quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
313+
"counterpartyDeliveryStatus": "PENDING"
313314
},
314315
"timestamp": "2023-08-15T14:32:00Z",
315316
"webhookId": "Webhook:019542f5-b3e7-1d02-0000-000000000007",

docusaurus-docs/docs/sending-payments.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ When the payment status changes (to completed or failed), your platform will rec
253253
"description": "Payment for invoice #1234",
254254
"exchangeRate": 0.92,
255255
"quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
256+
"counterpartyDeliveryStatus": "PENDING",
256257
"paymentInstructions": {
257258
"reference": "UMA-Q12345-REF",
258259
"bankAccountInfo": {

docusaurus-docs/src/pages/sending-payments-jit.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ When the payment status changes (to completed or failed), your platform will rec
251251
"description": "Payment for invoice #1234",
252252
"exchangeRate": 0.92,
253253
"quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
254+
"counterpartyDeliveryStatus": "PENDING",
254255
"paymentInstructions": {
255256
"reference": "UMA-Q12345-REF",
256257
"bankAccountInfo": {

mintlify/openapi.yaml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mintlify/remittances/developer-guides/sending-payments.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ When the payment status changes (to completed or failed), your platform will rec
252252
"description": "Payment for invoice #1234",
253253
"exchangeRate": 0.92,
254254
"quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
255+
"counterpartyDeliveryStatus": "PENDING",
255256
"paymentInstructions": {
256257
"reference": "UMA-Q12345-REF",
257258
"bankAccountInfo": {

openapi.yaml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
type: string
2+
enum:
3+
- PENDING
4+
- COMPLETED
5+
- FAILED
6+
description: >-
7+
The status of the delivery of the payment from the counterparty to the end recipient.
8+
This will only be present if the transaction has passed the `COMPLETED` status.

openapi/components/schemas/transactions/OutgoingTransaction.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ allOf:
4545
failureReason:
4646
$ref: ./OutgoingTransactionFailureReason.yaml
4747
description: If the transaction failed, this field provides the reason for failure.
48+
counterpartyDeliveryStatus:
49+
$ref: ./CounterpartyDeliveryStatus.yaml
50+
description: Status of the delivery of the payment. This will only be present if the transaction has passed the `COMPLETED` status.

0 commit comments

Comments
 (0)