@@ -269,7 +269,8 @@ of $10 was completed.
269269 participant ASE as Account servicing entity
270270
271271 R->>ASE: Fires incoming_payment.completed event to webhook endpoint,<br/>receivedAmount: $10
272- ASE->>R: Backend Admin API call: CreateIncomingPaymentWithdrawal
272+ ASE->>R: Backend Admin API call: createIncomingPaymentWithdrawal
273+ R-->>ASE: success: true
273274 ASE->>ASE: Credit recipient's account with $10
274275
275276` }
@@ -286,9 +287,11 @@ of $10 was completed.
286287 participant ASE as Account servicing entity
287288
288289 R->>ASE: Fires incoming_payment.completed event to webhook endpoint,<br/>receivedAmount: $10
289- ASE->>R: Backend Admin API call: CreateIncomingPaymentWithdrawal
290+ ASE->>R: Backend Admin API call: createIncomingPaymentWithdrawal
291+ R-->>ASE: success: true
290292 ASE->>ASE: Credit recipient's account with $10
291- ASE->>R: Backend Admin API call: PostLiquidityWithdrawal
293+ ASE->>R: Backend Admin API call: postLiquidityWithdrawal
294+ R-->>ASE: success: true
292295 R->>R: Two-phase transfer completed
293296
294297` }
@@ -310,7 +313,8 @@ The `incoming_payment.completed` event indicates the payment completed either au
310313 participant ASE as Account servicing entity
311314
312315 R->>ASE: Fires incoming_payment.expired event to webhook endpoint,<br/>receivedAmount: $2.55
313- ASE->>R: Backend Admin API call: CreateIncomingPaymentWithdrawal
316+ ASE->>R: Backend Admin API call: createIncomingPaymentWithdrawal
317+ R-->>ASE: success: true
314318 ASE->>ASE: Credit recipient's account with $2.55
315319
316320` }
@@ -353,9 +357,11 @@ An outgoing payment for \$12 was created.
353357 ASE->>ASE: Checks that sender's account has sufficient funds
354358 alt Account has sufficient funds
355359 ASE->>ASE: Put hold of $12 on sender's account
356- ASE->>R: Backend Admin API call: DepositOutgoingPaymentLiquidity
360+ ASE->>R: Backend Admin API call: depositOutgoingPaymentLiquidity
361+ R-->>ASE: success: true
357362 else Account has insufficient funds
358- ASE->>R: Backend Admin API call: CancelOutgoingPayment,<br/>reason: Insufficient funds
363+ ASE->>R: Backend Admin API call: cancelOutgoingPayment,<br/>Reason: insufficient funds
364+ R-->>ASE: success: true
359365 end
360366
361367` }
@@ -382,7 +388,8 @@ for \$12 is complete. \$11.50 was sent. You choose to keep \$0.50 as a service f
382388 participant ASE as Account servicing entity
383389
384390 R->>ASE: Fires outgoing_payment.completed event to webhook endpoint,<br/>debitAmount: $12, sentAmount: $11.50
385- ASE->>R: Backend Admin API call: CreateOutgoingPaymentWithdrawal
391+ ASE->>R: Backend Admin API call: createOutgoingPaymentWithdrawal
392+ R-->>ASE: success: true
386393 ASE->>ASE: Remove hold and deduct $12 from sender's account,<br/>credit your account with $0.50
387394
388395` }
@@ -396,9 +403,11 @@ for \$12 is complete. \$11.50 was sent. You choose to keep \$0.50 as a service f
396403 participant ASE as Account servicing entity
397404
398405 R->>ASE: Fires outgoing_payment.completed event to webhook endpoint,<br/>debitAmount: $12, sentAmount: $11.50
399- ASE->>R: Backend Admin API call: CreateOutgoingPaymentWithdrawal
406+ ASE->>R: Backend Admin API call: createOutgoingPaymentWithdrawal
407+ R-->>ASE: success: true
400408 ASE->>ASE: Remove hold and deduct $12 from sender's account,<br/>credit your account with $0.50
401- ASE->>R: Backend Admin API call: PostLiquidityWithdrawal
409+ ASE->>R: Backend Admin API call: postLiquidityWithdrawal
410+ R-->>ASE: success: true
402411 R->>R: Two-phase transfer complete
403412
404413` }
@@ -422,7 +431,8 @@ An outgoing payment for \$12 failed. \$8 was sent successfully.
422431 participant ASE as Account servicing entity
423432
424433 R->>ASE: Fires outgoing_payment.failed event to webhook endpoint,<br/>debitAmount: $12, sentAmount: $8
425- ASE->>R: Backend Admin API call: CreateOutgoingPaymentWithdrawal
434+ ASE->>R: Backend Admin API call: createOutgoingPaymentWithdrawal
435+ R-->>ASE: success: true
426436 ASE->>ASE: Remove hold and deduct $8 from the sender's account
427437
428438` }
@@ -455,7 +465,8 @@ The wallet address, `https://wallet.example.com/carla_garcia` was requested but
455465 participant ASE as Account servicing entity
456466
457467 R->>ASE: Fires wallet_address.not_found event to webhook endpoint,<br/>wallet address: https://wallet.example.com/carla_garcia
458- ASE->>R: Backend Admin API call: CreateWalletAddress,<br/>url: https://wallet.example.com/carla_garcia,<br/>public name: Carla Eva Garcia
468+ ASE->>R: Backend Admin API call: createWalletAddress,<br/>url: https://wallet.example.com/carla_garcia,<br/>public name: Carla Eva Garcia
469+ R-->>ASE: success: true
459470
460471` }
461472/>
@@ -486,7 +497,8 @@ A wallet address received a Web Monetization payment of \$0.33
486497 participant ASE as Account servicing entity
487498
488499 R->>ASE: Fires wallet_address.web_monetization event to webhook endpoint,<br/>receivedAmount: $0.33
489- ASE->>R: Backend Admin API call: CreateWalletAddressWithdrawal
500+ ASE->>R: Backend Admin API call: createWalletAddressWithdrawal
501+ R-->>ASE: success: true
490502 ASE->>ASE: Credit recipient's account with $0.33
491503
492504` }
@@ -518,7 +530,8 @@ Your asset liquidity for USD (asset scale: 2) drops below \$100.00.
518530 participant ASE as Account servicing entity
519531
520532 R->>ASE: Fires asset.liquidity_low event to webhook endpoint,<br/>asset: USD (scale: 2, id: "abc")
521- ASE->>R: Backend Admin API call: DepositAssetLiquidity
533+ ASE->>R: Backend Admin API call: depositAssetLiquidity
534+ R-->>ASE: success: true
522535
523536` }
524537/>
@@ -549,7 +562,8 @@ The liquidity for your peer, Happy Life Bank, drops below \$100.00 USD.
549562 participant ASE as Account servicing entity
550563
551564 R->>ASE: Fires peer.liquidity_low event to webhook endpoint,<br/>peer: Happy Life Bank (asset: "USD", scale: 2, id: "abc")
552- ASE->>R: Backend Admin API call: DepositPeerLiquidity
565+ ASE->>R: Backend Admin API call: depositPeerLiquidity
566+ R-->>ASE: success: true
553567
554568` }
555569/>
0 commit comments