RefundRequest

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
originalChargeId string Identifier of the original charge to refund
amount object
reason string Reason for the refund
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-refundrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RefundRequest",
  "title": "RefundRequest",
  "type": "object",
  "required": [
    "originalChargeId"
  ],
  "properties": {
    "originalChargeId": {
      "type": "string",
      "format": "uuid",
      "description": "Identifier of the original charge to refund"
    },
    "amount": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the refund"
    }
  }
}