Moov · Schema

CreateRefundRequest

Request body for creating a refund on a card transfer.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
amount integer Amount to refund in the smallest currency unit (e.g., cents). Must not exceed the original transfer amount.
View JSON Schema on GitHub

JSON Schema

moov-createrefundrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRefundRequest",
  "title": "CreateRefundRequest",
  "type": "object",
  "description": "Request body for creating a refund on a card transfer.",
  "required": [
    "amount"
  ],
  "properties": {
    "amount": {
      "type": "integer",
      "description": "Amount to refund in the smallest currency unit (e.g., cents). Must not exceed the original transfer amount.",
      "minimum": 1
    }
  }
}