This commit is contained in:
nicolas.dorier
2024-09-06 13:27:12 +09:00
parent c93497af10
commit e4b5609d78
2 changed files with 12 additions and 2 deletions

View File

@@ -246,7 +246,7 @@
]
}
},
"/api/v1/stores/{storeId}/payout-processors/LightningAutomatedPayoutSenderFactory/{paymentMethodId}": {
"/api/v1/stores/{storeId}/payout-processors/LightningAutomatedPayoutSenderFactory/{payoutMethodId}": {
"get": {
"tags": [
"Stores (Payout Processors)"
@@ -263,7 +263,7 @@
}
},
{
"$ref": "#/components/parameters/PaymentMethodId"
"$ref": "#/components/parameters/PayoutMethodId"
}
],
"description": "Get configured store Lightning automated payout processors",

View File

@@ -293,6 +293,16 @@
"$ref": "#/components/schemas/PaymentMethodId"
},
"example": "BTC-CHAIN"
},
"PayoutMethodId": {
"name": "paymentMethodId",
"in": "path",
"required": true,
"description": "The payout method id",
"schema": {
"$ref": "#/components/schemas/PayoutMethodId"
},
"example": "BTC-CHAIN"
}
},
"schemas": {