new payment by id method + shell scripts update + mntx removed

This commit is contained in:
Stephan D
2026-03-16 15:43:36 +01:00
parent 23ae8a8089
commit 2fcb150fbf
36 changed files with 348 additions and 26 deletions

View File

@@ -72,6 +72,10 @@ message ExecuteBatchPaymentResponse {
}
// GetPaymentRequest fetches one payment by payment_ref.
//
// If meta.organization_ref is provided, the lookup is scoped to that
// organization. If it is omitted, the service resolves the payment globally by
// payment_ref and returns the resolved organization_ref in the response.
message GetPaymentRequest {
payments.shared.v1.RequestMeta meta = 1;
string payment_ref = 2;
@@ -80,6 +84,7 @@ message GetPaymentRequest {
// GetPaymentResponse returns one orchestration payment aggregate.
message GetPaymentResponse {
Payment payment = 1;
string organization_ref = 2;
}
// ListPaymentsRequest lists payments within the caller organization scope.