Montran · Schema

RequestToPayResponse

Response for a request-to-pay initiation

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
requestId string Unique request-to-pay identifier
status string
createdAt string
View JSON Schema on GitHub

JSON Schema

montran-requesttopayresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestToPayResponse",
  "title": "RequestToPayResponse",
  "type": "object",
  "description": "Response for a request-to-pay initiation",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Unique request-to-pay identifier"
    },
    "status": {
      "type": "string",
      "enum": [
        "CREATED",
        "SENT",
        "REJECTED"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}