Sandbox

Simulate sending funds

Simulate sending funds to the bank account as instructed in the quote. This endpoint is only for the sandbox environment and will fail for production platforms/keys.

post/sandbox/send

Request body

quoteIdstring required

The unique identifier of the quote

currencyCodestring required

Currency code for the funds to be sent

currencyAmountinteger

The amount to send in the smallest unit of the currency (eg. cents). If not provided, the amount will be derived from the quote.

Example request

{
  "quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
  "currencyCode": "USD",
  "currencyAmount": 1000
}

Response

Funds received successfully

idstring required

Unique identifier for the transaction

status'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'EXPIRED' required

Status of an outgoing payment transaction.

StatusDescription
PENDINGQuote is pending confirmation
EXPIREDQuote wasn't executed before expiry window
PROCESSINGExecuting the quote after receiving funds
COMPLETEDPayout successfully reached the destination
FAILEDSomething went wrong — accompanied by a failureReason
type'OUTGOING' required

Type of transaction (incoming payment or outgoing payment)

customerIdstring required

System ID of the customer (sender for outgoing, recipient for incoming)

platformCustomerIdstring required

Platform-specific ID of the customer (sender for outgoing, recipient for incoming)

settledAtstring date-time

When the payment was or will be settled

createdAtstring date-time

When the transaction was created

updatedAtstring date-time

When the transaction was last updated

agentIdstring

If this transaction was initiated by an agent, the system-generated ID of that agent. Absent for platform-initiated transactions.

descriptionstring

Optional memo or description for the payment

counterpartyInformationCounterpartyInformation

Additional information about the counterparty, if available and relevant to the transaction and platform.

exchangeRatenumber

Number of sending currency units per receiving currency unit.

feesinteger

The fees associated with the quote in the smallest unit of the sending currency (eg. cents).

quoteIdstring

The ID of the quote that was used to trigger this payment

failureReason'QUOTE_EXPIRED' | 'QUOTE_EXECUTION_FAILED' | 'LIGHTNING_PAYMENT_FAILED' | 'FUNDING_AMOUNT_MISMATCH' | 'COUNTERPARTY_POST_TX_FAILED'

Reason for failure of an outgoing transaction. This is used to provide more context on why a transaction failed. If the transaction is not in a failed state, this field is omitted.

Example response

{
  "id": "Transaction:019542f5-b3e7-1d02-0000-000000000004",
  "destination": {
    "accountId": "ExternalAccount:a12dcbd6-dced-4ec4-b756-3c3a9ea3d123"
  },
  "customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
  "platformCustomerId": "18d3e5f7b4a9c2",
  "settledAt": "2025-08-15T14:30:00Z",
  "createdAt": "2025-08-15T14:25:18Z",
  "updatedAt": "2025-08-15T14:30:00Z",
  "agentId": "Agent:019542f5-b3e7-1d02-0000-000000000042",
  "description": "Payment for invoice #1234",
  "counterpartyInformation": {
    "FULL_NAME": "John Sender",
    "BIRTH_DATE": "1985-06-15",
    "NATIONALITY": "DE"
  },
  "source": {
    "accountId": "InternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965"
  },
  "sentAmount": {
    "amount": 12550,
    "currency": {
      "code": "USD",
      "name": "United States Dollar",
      "symbol": "$",
      "decimals": 2
    }
  },
  "receivedAmount": {
    "amount": 12550,
    "currency": {
      "code": "USD",
      "name": "United States Dollar",
      "symbol": "$",
      "decimals": 2
    }
  },
  "exchangeRate": 1.08,
  "fees": 10,
  "reconciliationInstructions": {
    "reference": "UMA-Q12345-REF",
    "transactionHash": "0x9f2c6b6f4b6c8f2a8d9e0b1c2d3e4f5061728394a5b6c7d8e9f00112233445566"
  },
  "quoteId": "Quote:019542f5-b3e7-1d02-0000-000000000006",
  "paymentInstructions": [
    {
      "accountOrWalletInfo": {
        "accountType": "USD_ACCOUNT",
        "paymentRails": [
          "ACH",
          "WIRE"
        ],
        "accountNumber": "1234567890",
        "routingNumber": "021000021",
        "bankName": "Chase Bank",
        "reference": "UMA-Q12345-REF"
      },
      "instructionsNotes": "Include reference UMA-Q12345-REF in memo"
    },
    {
      "accountOrWalletInfo": {
        "accountType": "SPARK_WALLET",
        "assetType": "BTC",
        "address": "spark1pgssyuuuhnrrdjswal5c3s3rafw9w3y5dd4cjy3duxlf7hjzkp0rqx6dj6mrhu",
        "invoice": "lnbc15u1p3xnhl2pp5jptserfk3zk4qy42tlucycrfwxhydvlemu9pqr93tuzlv9cc7g3sdqsvfhkcap3xyhx7un8cqzpgxqzjcsp5f8c52y2stc300gl6s4xswtjpc37hrnnr3c9wvtgjfuvqmpm35evq9qyyssqy4lgd8tj637qcjp05rdpxxykjenthxftej7a2zzmwrmrl70fyj9hvj0rewhzj7jfyuwkwcg9g2jpwtk3wkjtwnkdks84hsnu8xps5vsq4gj5hs"
      }
    }
  ],
  "refund": {
    "reference": "UMA-Q12345-REFUND",
    "initiatedAt": "2025-08-15T14:30:00Z",
    "settledAt": "2025-08-15T14:35:00Z",
    "status": "COMPLETED",
    "reason": "TRANSACTION_FAILED"
  },
  "rateDetails": {
    "counterpartyMultiplier": 1.08,
    "counterpartyFixedFee": 10,
    "gridApiMultiplier": 0.925,
    "gridApiFixedFee": 10,
    "gridApiVariableFeeRate": 0.003,
    "gridApiVariableFeeAmount": 30
  }
}

Changes

Changed in 16 of the 33 revisions of this API.30286246

  • d0bce562bffd1366See the full diff
    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #28: BDT Account]/allOf[BdtAccountInfo]/allOf[BdtAccountInfoBase]/accountNumber became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #28: BDT Account]/allOf[BdtAccountInfo]/allOf[BdtAccountInfoBase]/branchCode became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #28: BDT Account]/allOf[BdtAccountInfo]/allOf[BdtAccountInfoBase]/phoneNumber became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #32: GHS Account]/allOf[GhsAccountInfo]/allOf[GhsAccountInfoBase]/accountNumber became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #32: GHS Account]/allOf[GhsAccountInfo]/allOf[GhsAccountInfoBase]/phoneNumber became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #36: PKR Account]/allOf[PkrAccountInfo]/allOf[PkrAccountInfoBase]/accountNumber became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #36: PKR Account]/allOf[PkrAccountInfo]/allOf[PkrAccountInfoBase]/bankName became optional for the status 200

      response-property-became-optional

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #36: PKR Account]/allOf[PkrAccountInfo]/allOf[PkrAccountInfoBase]/phoneNumber became optional for the status 200

      response-property-became-optional

    • added PaymentSlvAccountInfo to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-added

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #28: BDT Account]/allOf[BdtAccountInfo]/allOf[BdtAccountInfoBase]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #32: GHS Account]/allOf[GhsAccountInfo]/allOf[GhsAccountInfoBase]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #33: GTQ Account]/allOf[GtqAccountInfo]/allOf[GtqAccountInfoBase]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #35: JMD Account]/allOf[JmdAccountInfo]/allOf[JmdAccountInfoBase]/bankName from the response with the 200 status

      response-required-property-removed

    • added the new REQUEST_ID_MISSING enum value to the code response property for the response status 401

      response-property-enum-value-added

    • added the new UMA_NOT_FOUND enum value to the code response property for the response status 404

      response-property-enum-value-added

    • added the new WALLET_SIGNATURE_BODY_MISMATCH enum value to the code response property for the response status 401

      response-property-enum-value-added

    • added the new WALLET_SIGNATURE_INVALID enum value to the code response property for the response status 401

      response-property-enum-value-added

    • added the new WALLET_SIGNATURE_MALFORMED enum value to the code response property for the response status 401

      response-property-enum-value-added

    • added the new WALLET_SIGNATURE_MISSING enum value to the code response property for the response status 401

      response-property-enum-value-added

    • added the optional property allOf[Transaction]/agentId to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[subschema #2]/reconciliationInstructions to the response with the 200 status

      response-optional-property-added

    • added SLV_ACCOUNT discriminator mapping keys to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-added

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #31: EGP Account]/allOf[EgpAccountInfo]/allOf[EgpAccountInfoBase]/iban response's property pattern was changed from ^[A-Z]{2}[0-9]{2}[A-Za-z0-9]{11,30}$ to ^EG[0-9]{27}$ for the status 200

      response-property-pattern-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #36: PKR Account]/allOf[PkrAccountInfo]/allOf[PkrAccountInfoBase]/iban response's property pattern was changed from ^[A-Z]{2}[0-9]{2}[A-Za-z0-9]{11,30}$ to ^PK[0-9]{2}[A-Z]{4}[0-9]{16}$ for the status 200

      response-property-pattern-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/allOf[DkkAccountInfoBase]/iban response's property pattern was changed from ^[A-Z]{2}[0-9]{2}[A-Za-z0-9]{11,30}$ to ^DK[0-9]{16}$ for the status 200

      response-property-pattern-changed

    This revision also has 6 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 5b8a8161eeb3801063See the full diff
    • added PaymentAedAccountInfo PaymentKesAccountInfo PaymentMwkAccountInfo PaymentRwfAccountInfo PaymentTzsAccountInfo PaymentUgxAccountInfo PaymentXofAccountInfo PaymentZarAccountInfo PaymentZmwAccountInfo PaymentBwpAccountInfo PaymentXafAccountInfo PaymentBdtAccountInfo PaymentArsAccountInfo PaymentCopAccountInfo PaymentEgpAccountInfo PaymentGhsAccountInfo PaymentGtqAccountInfo PaymentHtgAccountInfo PaymentJmdAccountInfo PaymentPkrAccountInfo PaymentEthereumWalletInfo PaymentEmbeddedWalletInfo to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-added

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/allOf[MxnAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/swiftCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/phoneNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/swiftCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/swiftCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/swiftCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/swiftCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/swiftCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/routingNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/allOf[MxnAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/allOf[MxnAccountInfo]/clabeNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/allOf[MxnAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/iban from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/iban from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/vpa from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/bankName from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/bankCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/branchCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/accountNumber from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/paymentRails from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/sortCode from the response with the 200 status

      response-required-property-removed

    • removed the optional property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/swiftBic from the response with the 200 status

      response-optional-property-removed

    • removed the optional property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/swiftBic from the response with the 200 status

      response-optional-property-removed

    • added the new DATA_MISMATCH enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new EMAIL_OTP_CREDENTIAL_ALREADY_EXISTS enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new EXPIRED enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new INCOMPLETE enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new LOW_QUALITY enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new PASSKEY_CREDENTIAL_ALREADY_EXISTS enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new SUSPECTED_FRAUD enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the new UNSUITABLE_DOCUMENT enum value to the code response property for the response status 400

      response-property-enum-value-added

    • added the optional property allOf[subschema #2]/refund/reason to the response with the 200 status

      response-optional-property-added

    • added the optional property allOf[subschema #2]/status to the response with the 200 status

      response-optional-property-added

    • added CadAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added DkkAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added EurAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added GbpAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added HkdAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added IdrAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added InrAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added MxnAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/allOf[MxnAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added MyrAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NgnAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added PhpAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added SgdAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added ThbAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added UsdAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added VndAccountInfoBase subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/source/oneOf[subschema #1: Account Source]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/source/oneOf[subschema #2: UMA Address Source]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/source/oneOf[subschema #3: Real-time Funding Source]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 subschema #2 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: BRL Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo BrlAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: BRL Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionDestination from the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionDestination from the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionSource from the allOf[subschema #2]/source/oneOf[subschema #1: Account Source]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionSource from the allOf[subschema #2]/source/oneOf[subschema #2: UMA Address Source]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionSource from the allOf[subschema #2]/source/oneOf[subschema #3: Real-time Funding Source]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • added ETHEREUM_WALLET AED_ACCOUNT KES_ACCOUNT MWK_ACCOUNT RWF_ACCOUNT TZS_ACCOUNT UGX_ACCOUNT XOF_ACCOUNT ZAR_ACCOUNT ZMW_ACCOUNT BWP_ACCOUNT XAF_ACCOUNT BDT_ACCOUNT ARS_ACCOUNT COP_ACCOUNT EGP_ACCOUNT GHS_ACCOUNT GTQ_ACCOUNT HTG_ACCOUNT JMD_ACCOUNT PKR_ACCOUNT EMBEDDED_WALLET discriminator mapping keys to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-added

    • removed EXTERNAL_ACCOUNT_DETAILS discriminator mapping keys from the allOf[Transaction]/destination response property for the response status 200

      response-property-discriminator-mapping-deleted

    • removed the SENT enum value from the allOf[Transaction]/status response property for the response status 200

      response-property-enum-value-removed

    • removed the TIMEOUT enum value from the allOf[subschema #2]/failureReason response property for the response status 200

      response-property-enum-value-removed

    • removed ExternalAccountDetailsTransactionDestination from the allOf[Transaction]/destination response property oneOf list for the response status 200

      response-property-one-of-removed

    • added the required property allOf[subschema #2]/refund/status to the response with the 200 status

      response-required-property-added

    This revision also has 15 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • efe0d983985f4042See the full diff
    • the response's body type/format changed from / to object/ for status 400

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 401

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 403

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 404

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 500

      response-body-type-changed

    • added KesExternalAccountInfo RwfExternalAccountInfo TzsExternalAccountInfo ZarExternalAccountInfo ZmwExternalAccountInfo to the allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo response property oneOf list for the response status 200

      response-property-one-of-added

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #10: MYR Account -> subschema #11: MYR Account]/allOf[MyrAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #11: NGN Account -> subschema #12: NGN Account]/allOf[NgnAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #12: PHP Account -> subschema #13: PHP Account]/allOf[PhpAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #13: SGD Account -> subschema #15: SGD Account]/allOf[SgdAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #14: THB Account -> subschema #16: THB Account]/allOf[ThbAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #15: USD Account -> subschema #18: USD Account]/allOf[UsdAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #16: VND Account -> subschema #19: VND Account]/allOf[VndAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #1: BRL Account]/allOf[BrlAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #2: CAD Account]/allOf[CadAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #3: DKK Account]/allOf[DkkAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #4: EUR Account]/allOf[EurAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #5: GBP Account]/allOf[GbpAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #6: HKD Account]/allOf[HkdAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #7: IDR Account]/allOf[IdrAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #7: IDR Account]/allOf[IdrAccountInfo]/sortCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #8: INR Account]/allOf[InrAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #9: MXN Account -> subschema #10: MXN Account]/allOf[MxnAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/sortCode from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #13: PHP Account]/allOf[PhpAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #14: SGD Account]/allOf[SgdAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: USD Bank Account]/allOf[UsdAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: BRL Account]/allOf[BrlAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: MXN Account]/allOf[MxnAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: DKK Account]/allOf[DkkAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: EUR Account]/allOf[EurAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: NGN Account]/allOf[NgnAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: CAD Account]/allOf[CadAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/allOf[GbpAccountInfo]/countries from the response with the 200 status

      response-required-property-removed

    • removed Error400_INVALID_INPUT Error400_MISSING_MANDATORY_USER_INFO Error400_INVITATION_ALREADY_CLAIMED Error400_INVITATIONS_NOT_CONFIGURED Error400_INVALID_UMA_ADDRESS Error400_INVITATION_CANCELLED Error400_QUOTE_REQUEST_FAILED Error400_INVALID_PAYREQ_RESPONSE Error400_INVALID_RECEIVER Error400_PARSE_PAYREQ_RESPONSE_ERROR Error400_CERT_CHAIN_INVALID Error400_CERT_CHAIN_EXPIRED Error400_INVALID_PUBKEY_FORMAT Error400_MISSING_REQUIRED_UMA_PARAMETERS Error400_SENDER_NOT_ACCEPTED Error400_AMOUNT_OUT_OF_RANGE Error400_INVALID_CURRENCY Error400_INVALID_TIMESTAMP Error400_INVALID_NONCE Error400_INVALID_REQUEST_FORMAT Error400_INVALID_BANK_ACCOUNT Error400_SELF_PAYMENT Error400_LOOKUP_REQUEST_FAILED Error400_PARSE_LNURLP_RESPONSE_ERROR Error400_INVALID_AMOUNT Error400_WEBHOOK_ENDPOINT_NOT_SET Error400_WEBHOOK_DELIVERY_ERROR from the response body oneOf list for the response status 400

      response-body-one-of-removed

    • removed Error401_UNAUTHORIZED Error401_INVALID_SIGNATURE from the response body oneOf list for the response status 401

      response-body-one-of-removed

    • removed Error403_FORBIDDEN Error403_USER_NOT_READY Error403_COUNTERPARTY_NOT_ALLOWED Error403_VELOCITY_LIMIT_EXCEEDED from the response body oneOf list for the response status 403

      response-body-one-of-removed

    • removed Error404_TRANSACTION_NOT_FOUND Error404_INVITATION_NOT_FOUND Error404_USER_NOT_FOUND Error404_QUOTE_NOT_FOUND Error404_LOOKUP_REQUEST_NOT_FOUND Error404_TOKEN_NOT_FOUND Error404_BULK_UPLOAD_JOB_NOT_FOUND Error404_REFERENCE_NOT_FOUND from the response body oneOf list for the response status 404

      response-body-one-of-removed

    • removed Error500_GRID_SWITCH_ERROR Error500_INTERNAL_ERROR from the response body oneOf list for the response status 500

      response-body-one-of-removed

    • added the optional property details to the response with the 400 status

      response-optional-property-added

    • added the optional property details to the response with the 401 status

      response-optional-property-added

    • added the optional property details to the response with the 403 status

      response-optional-property-added

    • added the optional property details to the response with the 404 status

      response-optional-property-added

    • added the optional property details to the response with the 500 status

      response-optional-property-added

    • added KES_ACCOUNT RWF_ACCOUNT TZS_ACCOUNT ZAR_ACCOUNT ZMW_ACCOUNT discriminator mapping keys to the allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo response property for the response status 200

      response-property-discriminator-mapping-added

    • removed the IMPS enum value from the allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #8: INR Account]/allOf[InrAccountInfo]/paymentRails/items/ response property for the response status 200

      response-property-enum-value-removed

    • removed the IMPS enum value from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: INR Account]/allOf[InrAccountInfo]/paymentRails/items/ response property for the response status 200

      response-property-enum-value-removed

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #10: MYR Account -> subschema #11: MYR Account]/allOf[MyrAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #14: THB Account -> subschema #16: THB Account]/allOf[ThbAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #16: VND Account -> subschema #19: VND Account]/allOf[VndAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #6: HKD Account]/allOf[HkdAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #7: IDR Account]/allOf[IdrAccountInfo]/bankName to the response with the 200 status

      response-required-property-added

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #7: IDR Account]/allOf[IdrAccountInfo]/phoneNumber to the response with the 200 status

      response-required-property-added

    • added the required property allOf[Transaction]/destination/oneOf[subschema #3: External Account Details Destination]/allOf[subschema #2]/externalAccountDetails/allOf[subschema #1]/accountInfo/oneOf[subschema #7: IDR Account]/allOf[IdrAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: HKD Account]/allOf[HkdAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/bankName to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/phoneNumber to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: IDR Account]/allOf[IdrAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #12: MYR Account]/allOf[MyrAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #15: THB Account]/allOf[ThbAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #16: VND Account]/allOf[VndAccountInfo]/swiftCode to the response with the 200 status

      response-required-property-added

    • added the required property code to the response with the 400 status

      response-required-property-added

    • added the required property code to the response with the 401 status

      response-required-property-added

    • added the required property code to the response with the 403 status

      response-required-property-added

    • added the required property code to the response with the 404 status

      response-required-property-added

    • added the required property code to the response with the 500 status

      response-required-property-added

    • added the required property message to the response with the 400 status

      response-required-property-added

    • added the required property message to the response with the 401 status

      response-required-property-added

    • added the required property message to the response with the 403 status

      response-required-property-added

    • added the required property message to the response with the 404 status

      response-required-property-added

    • added the required property message to the response with the 500 status

      response-required-property-added

    • added the required property status to the response with the 400 status

      response-required-property-added

    • added the required property status to the response with the 401 status

      response-required-property-added

    • added the required property status to the response with the 403 status

      response-required-property-added

    • added the required property status to the response with the 404 status

      response-required-property-added

    • added the required property status to the response with the 500 status

      response-required-property-added

    This revision also has 51 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • c62cf646aaeb29613See the full diff
    • added Error400_INVALID_INPUT Error400_MISSING_MANDATORY_USER_INFO Error400_INVITATION_ALREADY_CLAIMED Error400_INVITATIONS_NOT_CONFIGURED Error400_INVALID_UMA_ADDRESS Error400_INVITATION_CANCELLED Error400_QUOTE_REQUEST_FAILED Error400_INVALID_PAYREQ_RESPONSE Error400_INVALID_RECEIVER Error400_PARSE_PAYREQ_RESPONSE_ERROR Error400_CERT_CHAIN_INVALID Error400_CERT_CHAIN_EXPIRED Error400_INVALID_PUBKEY_FORMAT Error400_MISSING_REQUIRED_UMA_PARAMETERS Error400_SENDER_NOT_ACCEPTED Error400_AMOUNT_OUT_OF_RANGE Error400_INVALID_CURRENCY Error400_INVALID_TIMESTAMP Error400_INVALID_NONCE Error400_INVALID_REQUEST_FORMAT Error400_INVALID_BANK_ACCOUNT Error400_SELF_PAYMENT Error400_LOOKUP_REQUEST_FAILED Error400_PARSE_LNURLP_RESPONSE_ERROR Error400_INVALID_AMOUNT Error400_WEBHOOK_ENDPOINT_NOT_SET Error400_WEBHOOK_DELIVERY_ERROR to the response body oneOf list for the response status 400

      response-body-one-of-added

    • added Error401_UNAUTHORIZED Error401_INVALID_SIGNATURE to the response body oneOf list for the response status 401

      response-body-one-of-added

    • added Error403_FORBIDDEN Error403_USER_NOT_READY Error403_COUNTERPARTY_NOT_ALLOWED Error403_VELOCITY_LIMIT_EXCEEDED to the response body oneOf list for the response status 403

      response-body-one-of-added

    • added Error404_TRANSACTION_NOT_FOUND Error404_INVITATION_NOT_FOUND Error404_USER_NOT_FOUND Error404_QUOTE_NOT_FOUND Error404_LOOKUP_REQUEST_NOT_FOUND Error404_TOKEN_NOT_FOUND Error404_BULK_UPLOAD_JOB_NOT_FOUND Error404_REFERENCE_NOT_FOUND to the response body oneOf list for the response status 404

      response-body-one-of-added

    • added Error500_GRID_SWITCH_ERROR Error500_INTERNAL_ERROR to the response body oneOf list for the response status 500

      response-body-one-of-added

    • the response's body type/format changed from object/ to / for status 400

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 401

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 403

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 404

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 500

      response-body-type-changed

    • the response property allOf[subschema #2]/paymentInstructions became optional for the status 200

      response-property-became-optional

    • added ExternalAccountDetailsTransactionDestination to the allOf[Transaction]/destination response property oneOf list for the response status 200

      response-property-one-of-added

    • added PaymentUsdAccountInfo PaymentBrlAccountInfo PaymentMxnAccountInfo PaymentDkkAccountInfo PaymentEurAccountInfo PaymentInrAccountInfo PaymentNgnAccountInfo PaymentCadAccountInfo PaymentGbpAccountInfo PaymentHkdAccountInfo PaymentIdrAccountInfo PaymentMyrAccountInfo PaymentPhpAccountInfo PaymentSgdAccountInfo PaymentThbAccountInfo PaymentVndAccountInfo to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-added

    • added RealtimeFundingTransactionSource to the allOf[subschema #2]/source response property oneOf list for the response status 200

      response-property-one-of-added

    • removed the required property code from the response with the 400 status

      response-required-property-removed

    • removed the required property code from the response with the 401 status

      response-required-property-removed

    • removed the required property code from the response with the 403 status

      response-required-property-removed

    • removed the required property code from the response with the 404 status

      response-required-property-removed

    • removed the required property code from the response with the 500 status

      response-required-property-removed

    • removed the required property message from the response with the 400 status

      response-required-property-removed

    • removed the required property message from the response with the 401 status

      response-required-property-removed

    • removed the required property message from the response with the 403 status

      response-required-property-removed

    • removed the required property message from the response with the 404 status

      response-required-property-removed

    • removed the required property message from the response with the 500 status

      response-required-property-removed

    • removed the required property status from the response with the 400 status

      response-required-property-removed

    • removed the required property status from the response with the 401 status

      response-required-property-removed

    • removed the required property status from the response with the 403 status

      response-required-property-removed

    • removed the required property status from the response with the 404 status

      response-required-property-removed

    • removed the required property status from the response with the 500 status

      response-required-property-removed

    • removed the optional property details from the response with the 400 status

      response-optional-property-removed

    • removed the optional property details from the response with the 401 status

      response-optional-property-removed

    • removed the optional property details from the response with the 403 status

      response-optional-property-removed

    • removed the optional property details from the response with the 404 status

      response-optional-property-removed

    • removed the optional property details from the response with the 500 status

      response-optional-property-removed

    • added the new SENT enum value to the allOf[Transaction]/status response property for the response status 200

      response-property-enum-value-added

    • added BaseTransactionDestination to the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added BaseTransactionDestination to the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed subschema #1 from the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed subschema #1 from the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • added EXTERNAL_ACCOUNT_DETAILS discriminator mapping keys to the allOf[Transaction]/destination response property for the response status 200

      response-property-discriminator-mapping-added

    • added REALTIME_FUNDING discriminator mapping keys to the allOf[subschema #2]/source response property for the response status 200

      response-property-discriminator-mapping-added

    • added USD_ACCOUNT BRL_ACCOUNT MXN_ACCOUNT DKK_ACCOUNT EUR_ACCOUNT INR_ACCOUNT NGN_ACCOUNT CAD_ACCOUNT GBP_ACCOUNT HKD_ACCOUNT IDR_ACCOUNT MYR_ACCOUNT PHP_ACCOUNT SGD_ACCOUNT THB_ACCOUNT VND_ACCOUNT discriminator mapping keys to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-added

    • removed CLABE US_ACCOUNT PIX IBAN UPI discriminator mapping keys from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-deleted

    • removed discriminator from allOf[Transaction]/ response property for the response status 200

      response-property-discriminator-removed

    • removed discriminator from allOf[subschema #2]/source/oneOf[subschema #1: Account Source]/allOf[BaseTransactionSource]/ response property for the response status 200

      response-property-discriminator-removed

    • removed discriminator from allOf[subschema #2]/source/oneOf[subschema #2: UMA Address Source]/allOf[BaseTransactionSource]/ response property for the response status 200

      response-property-discriminator-removed

    • removed PaymentClabeAccountInfo PaymentUsAccountInfo PaymentPixAccountInfo PaymentIbanAccountInfo PaymentUpiAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-removed

    • added the required property allOf[subschema #2]/type to the response with the 200 status

      response-required-property-added

    This revision also has 24 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 55dc3fc30633529See the full diff
    • the response's body type/format changed from / to object/ for status 400

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 401

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 403

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 404

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 500

      response-body-type-changed

    • removed Error400_INVALID_INPUT Error400_MISSING_MANDATORY_USER_INFO Error400_INVITATION_ALREADY_CLAIMED Error400_INVITATIONS_NOT_CONFIGURED Error400_INVALID_UMA_ADDRESS Error400_INVITATION_CANCELLED Error400_QUOTE_REQUEST_FAILED Error400_INVALID_PAYREQ_RESPONSE Error400_INVALID_RECEIVER Error400_PARSE_PAYREQ_RESPONSE_ERROR Error400_CERT_CHAIN_INVALID Error400_CERT_CHAIN_EXPIRED Error400_INVALID_PUBKEY_FORMAT Error400_MISSING_REQUIRED_UMA_PARAMETERS Error400_SENDER_NOT_ACCEPTED Error400_AMOUNT_OUT_OF_RANGE Error400_INVALID_CURRENCY Error400_INVALID_TIMESTAMP Error400_INVALID_NONCE Error400_INVALID_REQUEST_FORMAT Error400_INVALID_BANK_ACCOUNT Error400_SELF_PAYMENT Error400_LOOKUP_REQUEST_FAILED Error400_PARSE_LNURLP_RESPONSE_ERROR Error400_INVALID_AMOUNT Error400_WEBHOOK_ENDPOINT_NOT_SET Error400_WEBHOOK_DELIVERY_ERROR from the response body oneOf list for the response status 400

      response-body-one-of-removed

    • removed Error401_UNAUTHORIZED Error401_INVALID_SIGNATURE from the response body oneOf list for the response status 401

      response-body-one-of-removed

    • removed Error403_FORBIDDEN Error403_USER_NOT_READY Error403_COUNTERPARTY_NOT_ALLOWED Error403_VELOCITY_LIMIT_EXCEEDED from the response body oneOf list for the response status 403

      response-body-one-of-removed

    • removed Error404_TRANSACTION_NOT_FOUND Error404_INVITATION_NOT_FOUND Error404_USER_NOT_FOUND Error404_QUOTE_NOT_FOUND Error404_LOOKUP_REQUEST_NOT_FOUND Error404_TOKEN_NOT_FOUND Error404_BULK_UPLOAD_JOB_NOT_FOUND Error404_REFERENCE_NOT_FOUND from the response body oneOf list for the response status 404

      response-body-one-of-removed

    • removed Error500_GRID_SWITCH_ERROR Error500_INTERNAL_ERROR from the response body oneOf list for the response status 500

      response-body-one-of-removed

    • added the optional property details to the response with the 400 status

      response-optional-property-added

    • added the optional property details to the response with the 401 status

      response-optional-property-added

    • added the optional property details to the response with the 403 status

      response-optional-property-added

    • added the optional property details to the response with the 404 status

      response-optional-property-added

    • added the optional property details to the response with the 500 status

      response-optional-property-added

    • added subschema #1 to the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed BaseTransactionDestination from the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionDestination from the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • added the required property code to the response with the 400 status

      response-required-property-added

    • added the required property code to the response with the 401 status

      response-required-property-added

    • added the required property code to the response with the 403 status

      response-required-property-added

    • added the required property code to the response with the 404 status

      response-required-property-added

    • added the required property code to the response with the 500 status

      response-required-property-added

    • added the required property message to the response with the 400 status

      response-required-property-added

    • added the required property message to the response with the 401 status

      response-required-property-added

    • added the required property message to the response with the 403 status

      response-required-property-added

    • added the required property message to the response with the 404 status

      response-required-property-added

    • added the required property message to the response with the 500 status

      response-required-property-added

    • added the required property status to the response with the 400 status

      response-required-property-added

    • added the required property status to the response with the 401 status

      response-required-property-added

    • added the required property status to the response with the 403 status

      response-required-property-added

    • added the required property status to the response with the 404 status

      response-required-property-added

    • added the required property status to the response with the 500 status

      response-required-property-added

    This revision also has 51 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • removed the optional property allOf[subschema #2]/originalTransactionId from the response with the 200 status

      response-optional-property-removed

  • ecd31fe01b4e2554See the full diff
    • added Error400_INVALID_INPUT Error400_MISSING_MANDATORY_USER_INFO Error400_INVITATION_ALREADY_CLAIMED Error400_INVITATIONS_NOT_CONFIGURED Error400_INVALID_UMA_ADDRESS Error400_INVITATION_CANCELLED Error400_QUOTE_REQUEST_FAILED Error400_INVALID_PAYREQ_RESPONSE Error400_INVALID_RECEIVER Error400_PARSE_PAYREQ_RESPONSE_ERROR Error400_CERT_CHAIN_INVALID Error400_CERT_CHAIN_EXPIRED Error400_INVALID_PUBKEY_FORMAT Error400_MISSING_REQUIRED_UMA_PARAMETERS Error400_SENDER_NOT_ACCEPTED Error400_AMOUNT_OUT_OF_RANGE Error400_INVALID_CURRENCY Error400_INVALID_TIMESTAMP Error400_INVALID_NONCE Error400_INVALID_REQUEST_FORMAT Error400_INVALID_BANK_ACCOUNT Error400_SELF_PAYMENT Error400_LOOKUP_REQUEST_FAILED Error400_PARSE_LNURLP_RESPONSE_ERROR Error400_INVALID_AMOUNT Error400_WEBHOOK_ENDPOINT_NOT_SET Error400_WEBHOOK_DELIVERY_ERROR to the response body oneOf list for the response status 400

      response-body-one-of-added

    • added Error401_UNAUTHORIZED Error401_INVALID_SIGNATURE to the response body oneOf list for the response status 401

      response-body-one-of-added

    • added Error403_FORBIDDEN Error403_USER_NOT_READY Error403_COUNTERPARTY_NOT_ALLOWED Error403_VELOCITY_LIMIT_EXCEEDED to the response body oneOf list for the response status 403

      response-body-one-of-added

    • added Error404_TRANSACTION_NOT_FOUND Error404_INVITATION_NOT_FOUND Error404_USER_NOT_FOUND Error404_QUOTE_NOT_FOUND Error404_LOOKUP_REQUEST_NOT_FOUND Error404_TOKEN_NOT_FOUND Error404_BULK_UPLOAD_JOB_NOT_FOUND Error404_REFERENCE_NOT_FOUND to the response body oneOf list for the response status 404

      response-body-one-of-added

    • added Error500_GRID_SWITCH_ERROR Error500_INTERNAL_ERROR to the response body oneOf list for the response status 500

      response-body-one-of-added

    • the response's body type/format changed from object/ to / for status 400

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 401

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 403

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 404

      response-body-type-changed

    • the response's body type/format changed from object/ to / for status 500

      response-body-type-changed

    • removed the required property code from the response with the 400 status

      response-required-property-removed

    • removed the required property code from the response with the 401 status

      response-required-property-removed

    • removed the required property code from the response with the 403 status

      response-required-property-removed

    • removed the required property code from the response with the 404 status

      response-required-property-removed

    • removed the required property code from the response with the 500 status

      response-required-property-removed

    • removed the required property message from the response with the 400 status

      response-required-property-removed

    • removed the required property message from the response with the 401 status

      response-required-property-removed

    • removed the required property message from the response with the 403 status

      response-required-property-removed

    • removed the required property message from the response with the 404 status

      response-required-property-removed

    • removed the required property message from the response with the 500 status

      response-required-property-removed

    • removed the required property status from the response with the 400 status

      response-required-property-removed

    • removed the required property status from the response with the 401 status

      response-required-property-removed

    • removed the required property status from the response with the 403 status

      response-required-property-removed

    • removed the required property status from the response with the 404 status

      response-required-property-removed

    • removed the required property status from the response with the 500 status

      response-required-property-removed

    • removed the optional property details from the response with the 400 status

      response-optional-property-removed

    • removed the optional property details from the response with the 401 status

      response-optional-property-removed

    • removed the optional property details from the response with the 403 status

      response-optional-property-removed

    • removed the optional property details from the response with the 404 status

      response-optional-property-removed

    • removed the optional property details from the response with the 500 status

      response-optional-property-removed

    • added BaseTransactionDestination to the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added BaseTransactionDestination to the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed subschema #1 from the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed subschema #1 from the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    This revision also has 13 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 2055da1ed488529See the full diff
    • the response's body type/format changed from / to object/ for status 400

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 401

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 403

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 404

      response-body-type-changed

    • the response's body type/format changed from / to object/ for status 500

      response-body-type-changed

    • removed Error400_INVALID_INPUT Error400_MISSING_MANDATORY_USER_INFO Error400_INVITATION_ALREADY_CLAIMED Error400_INVITATIONS_NOT_CONFIGURED Error400_INVALID_UMA_ADDRESS Error400_INVITATION_CANCELLED Error400_QUOTE_REQUEST_FAILED Error400_INVALID_PAYREQ_RESPONSE Error400_INVALID_RECEIVER Error400_PARSE_PAYREQ_RESPONSE_ERROR Error400_CERT_CHAIN_INVALID Error400_CERT_CHAIN_EXPIRED Error400_INVALID_PUBKEY_FORMAT Error400_MISSING_REQUIRED_UMA_PARAMETERS Error400_SENDER_NOT_ACCEPTED Error400_AMOUNT_OUT_OF_RANGE Error400_INVALID_CURRENCY Error400_INVALID_TIMESTAMP Error400_INVALID_NONCE Error400_INVALID_REQUEST_FORMAT Error400_INVALID_BANK_ACCOUNT Error400_SELF_PAYMENT Error400_LOOKUP_REQUEST_FAILED Error400_PARSE_LNURLP_RESPONSE_ERROR Error400_INVALID_AMOUNT Error400_WEBHOOK_ENDPOINT_NOT_SET Error400_WEBHOOK_DELIVERY_ERROR from the response body oneOf list for the response status 400

      response-body-one-of-removed

    • removed Error401_UNAUTHORIZED Error401_INVALID_SIGNATURE from the response body oneOf list for the response status 401

      response-body-one-of-removed

    • removed Error403_FORBIDDEN Error403_USER_NOT_READY Error403_COUNTERPARTY_NOT_ALLOWED Error403_VELOCITY_LIMIT_EXCEEDED from the response body oneOf list for the response status 403

      response-body-one-of-removed

    • removed Error404_TRANSACTION_NOT_FOUND Error404_INVITATION_NOT_FOUND Error404_USER_NOT_FOUND Error404_QUOTE_NOT_FOUND Error404_LOOKUP_REQUEST_NOT_FOUND Error404_TOKEN_NOT_FOUND Error404_BULK_UPLOAD_JOB_NOT_FOUND Error404_REFERENCE_NOT_FOUND from the response body oneOf list for the response status 404

      response-body-one-of-removed

    • removed Error500_GRID_SWITCH_ERROR Error500_INTERNAL_ERROR from the response body oneOf list for the response status 500

      response-body-one-of-removed

    • added the optional property details to the response with the 400 status

      response-optional-property-added

    • added the optional property details to the response with the 401 status

      response-optional-property-added

    • added the optional property details to the response with the 403 status

      response-optional-property-added

    • added the optional property details to the response with the 404 status

      response-optional-property-added

    • added the optional property details to the response with the 500 status

      response-optional-property-added

    • added subschema #1 to the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed BaseTransactionDestination from the allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BaseTransactionDestination from the allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • added the required property code to the response with the 400 status

      response-required-property-added

    • added the required property code to the response with the 401 status

      response-required-property-added

    • added the required property code to the response with the 403 status

      response-required-property-added

    • added the required property code to the response with the 404 status

      response-required-property-added

    • added the required property code to the response with the 500 status

      response-required-property-added

    • added the required property message to the response with the 400 status

      response-required-property-added

    • added the required property message to the response with the 401 status

      response-required-property-added

    • added the required property message to the response with the 403 status

      response-required-property-added

    • added the required property message to the response with the 404 status

      response-required-property-added

    • added the required property message to the response with the 500 status

      response-required-property-added

    • added the required property status to the response with the 400 status

      response-required-property-added

    • added the required property status to the response with the 401 status

      response-required-property-added

    • added the required property status to the response with the 403 status

      response-required-property-added

    • added the required property status to the response with the 404 status

      response-required-property-added

    • added the required property status to the response with the 500 status

      response-required-property-added

    This revision also has 51 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: Polygon Wallet]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: Base Wallet]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: CLABE Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: US Bank Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: PIX Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: IBAN Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: UPI Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: Spark Wallet]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: Lightning Invoice]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: Solana Wallet]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 to the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: Tron Wallet]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: Polygon Wallet]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: Base Wallet]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: CLABE Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: US Bank Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: PIX Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: IBAN Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: UPI Account]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: Spark Wallet]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: Lightning Invoice]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: Solana Wallet]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed BasePaymentAccountInfo from the allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: Tron Wallet]/ response property allOf list for the response status 200

      response-property-all-of-removed

  • e951665c552d1515See the full diff
    • removed the required property allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/allOf[BaseTransactionDestination]/destinationType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/allOf[BaseTransactionDestination]/destinationType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: Polygon Wallet]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: Base Wallet]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: CLABE Account]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: US Bank Account]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: PIX Account]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: IBAN Account]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: UPI Account]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: Spark Wallet]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: Lightning Invoice]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: Solana Wallet]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: Tron Wallet]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/source/oneOf[subschema #1: Account Source]/allOf[BaseTransactionSource]/sourceType from the response with the 200 status

      response-required-property-removed

    • removed the required property allOf[subschema #2]/source/oneOf[subschema #2: UMA Address Source]/allOf[BaseTransactionSource]/sourceType from the response with the 200 status

      response-required-property-removed

    • added the optional property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #7: Lightning Invoice]/allOf[subschema #2]/accountType to the response with the 200 status

      response-optional-property-added

    • the response property allOf[Transaction]/destination/oneOf[subschema #1: Account Destination]/allOf[subschema #2]/destinationType became required for the status 200

      response-property-became-required

    • the response property allOf[Transaction]/destination/oneOf[subschema #2: UMA Address Destination]/allOf[subschema #2]/destinationType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: Polygon Wallet]/allOf[PolygonWalletInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #11: Base Wallet]/allOf[BaseWalletInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #1: CLABE Account]/allOf[ClabeAccountInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: US Bank Account]/allOf[UsAccountInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #3: PIX Account]/allOf[PixAccountInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #4: IBAN Account]/allOf[IbanAccountInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #5: UPI Account]/allOf[UpiAccountInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #6: Spark Wallet]/allOf[SparkWalletInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #8: Solana Wallet]/allOf[SolanaWalletInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/paymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: Tron Wallet]/allOf[TronWalletInfo]/accountType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/source/oneOf[subschema #1: Account Source]/allOf[subschema #2]/sourceType became required for the status 200

      response-property-became-required

    • the response property allOf[subschema #2]/source/oneOf[subschema #2: UMA Address Source]/allOf[subschema #2]/sourceType became required for the status 200

      response-property-became-required