Skip to content

Commit

Permalink
feat(bruno): cancel outgoing payment
Browse files Browse the repository at this point in the history
  • Loading branch information
golobitch committed May 2, 2024
1 parent 001ddba commit 57c6f8b
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
meta {
name: Cancel Outgoing Payment
type: graphql
seq: 43
}

post {
url: {{RafikiGraphqlHost}}/graphql
body: graphql
auth: none
}

body:graphql {
mutation CancelOutgoingPayment($input: CancelOutgoingPaymentInput!) {
cancelOutgoingPayment(input: $input) {
code
message
success
}
}
}

body:graphql:vars {
{
"input": {
"id": "{{outgoingPaymentId}}",
"reason": "Not enough balance"
}
}
}

0 comments on commit 57c6f8b

Please sign in to comment.