Montran · Schema

PaymentResponse

Response returned after successful payment initiation

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
paymentId string Unique payment identifier assigned by the system
messageId string Original message identification
endToEndId string End-to-end identification
status string Current payment status
clearingSystem string Assigned clearing and settlement mechanism
createdAt string Timestamp when the payment was created
View JSON Schema on GitHub

JSON Schema

montran-paymentresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentResponse",
  "title": "PaymentResponse",
  "type": "object",
  "description": "Response returned after successful payment initiation",
  "properties": {
    "paymentId": {
      "type": "string",
      "description": "Unique payment identifier assigned by the system"
    },
    "messageId": {
      "type": "string",
      "description": "Original message identification"
    },
    "endToEndId": {
      "type": "string",
      "description": "End-to-end identification"
    },
    "status": {
      "type": "string",
      "description": "Current payment status",
      "enum": [
        "RECEIVED",
        "VALIDATED",
        "PENDING"
      ]
    },
    "clearingSystem": {
      "type": "string",
      "description": "Assigned clearing and settlement mechanism"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the payment was created"
    }
  }
}