Sandbox

Simulate funding an internal account

Simulate receiving funds into an internal account in the sandbox environment. This is useful for testing scenarios where you need to add funds to a customer's or platform's internal account without going through a real bank transfer or following payment instructions. This endpoint is only for the sandbox environment and will fail for production platforms/keys.

post/sandbox/internal-accounts/{accountId}/fund

Path parameters

accountIdstring required

The ID of the internal account to fund

Request body

amountinteger required

Amount to add in the smallest unit of the account's currency (e.g., cents for USD/EUR, satoshis for BTC)

Example request

{
  "amount": 100000
}

Response

Internal account funded successfully

idstring required

The ID of the internal account

customerIdstring

The ID of the customer associated with the internal account. If this field is empty, the internal account belongs to the platform.

type'INTERNAL_FIAT' | 'INTERNAL_CRYPTO' | 'EMBEDDED_WALLET' required

Classification of an internal account.

  • INTERNAL_FIAT: A Grid-managed fiat holding account (for example, the USD holding account used as the source for Payouts flows).
  • INTERNAL_CRYPTO: A Grid-managed crypto holding account denominated in a stablecoin such as USDC.
  • EMBEDDED_WALLET: A self-custodial Embedded Wallet provisioned for the customer. Outbound transfers require a session signature produced by the customer's device — see the Embedded Wallets guide.
status'PENDING' | 'ACTIVE' | 'CLOSED' | 'FROZEN' required

Status of a Grid internal account. The status determines whether the account can send or receive payments.

  • PENDING: The account is under review and is being provisioned. The account cannot send or receive payments until provisioning completes.
  • ACTIVE: The account is ready to send and receive payments.
  • CLOSED: The account cannot send or receive payments. A customer can initiate the closing of an internal account, after which the account transitions to this status.
  • FROZEN: The account cannot send or receive payments. Grid may freeze an account in response to compliance or fraud signals; payments are blocked while the account remains frozen.
privateEnabledboolean

Whether wallet privacy is enabled for the Embedded Wallet. Only present for EMBEDDED_WALLET internal accounts.

createdAtstring date-time required

Timestamp when the internal account was created

updatedAtstring date-time required

Timestamp when the internal account was last updated

Example response

{
  "id": "InternalAccount:12dcbd6-dced-4ec4-b756-3c3a9ea3d123",
  "customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
  "status": "ACTIVE",
  "balance": {
    "amount": 12550,
    "currency": {
      "code": "USD",
      "name": "United States Dollar",
      "symbol": "$",
      "decimals": 2
    }
  },
  "fundingPaymentInstructions": [
    {
      "instructionsNotes": "Please ensure the reference code is included in the payment memo/description field",
      "isPlatformAccount": true,
      "accountOrWalletInfo": {
        "accountType": "USD_ACCOUNT",
        "accountNumber": "1234567890",
        "routingNumber": "021000021"
      }
    }
  ],
  "privateEnabled": true,
  "createdAt": "2025-10-03T12:30:00Z",
  "updatedAt": "2025-10-03T12:30:00Z"
}

Changes

Changed in 15 of the 33 revisions of this API.27184189

  • d0bce562bffd1366See the full diff
    • the response property fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-added

    • removed the required property fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 privateEnabled to the response with the 200 status

      response-optional-property-added

    • added SLV_ACCOUNT discriminator mapping keys to the fundingPaymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-added

    • the fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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

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

      response-required-property-added

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

  • 5b8a8161eeb3801047See 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 fundingPaymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-added

    • the fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 CadAccountInfoBase subschema #2 to the fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: GBP Account]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added subschema #1 subschema #2 to the fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo/oneOf[subschema #2: BRL Account]/ 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 fundingPaymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-added

    • added the required property type 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

  • efe0d983985f2233See 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 the required property fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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

    • removed the IMPS enum value from the fundingPaymentInstructions/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 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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 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

  • c62cf646aaeb2653See 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

    • added PaymentUsdAccountInfo PaymentBrlAccountInfo PaymentMxnAccountInfo PaymentDkkAccountInfo PaymentEurAccountInfo PaymentInrAccountInfo PaymentNgnAccountInfo PaymentCadAccountInfo PaymentGbpAccountInfo PaymentHkdAccountInfo PaymentIdrAccountInfo PaymentMyrAccountInfo PaymentPhpAccountInfo PaymentSgdAccountInfo PaymentThbAccountInfo PaymentVndAccountInfo to the fundingPaymentInstructions/items/accountOrWalletInfo 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 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 fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo response property for the response status 200

      response-property-discriminator-mapping-deleted

    • removed PaymentClabeAccountInfo PaymentUsAccountInfo PaymentPixAccountInfo PaymentIbanAccountInfo PaymentUpiAccountInfo from the fundingPaymentInstructions/items/accountOrWalletInfo response property oneOf list for the response status 200

      response-property-one-of-removed

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

  • 55dc3fc30633525See 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 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

  • ecd31fe01b4e255See 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

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

  • 2055da1ed488525See 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 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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: Tron Wallet]/ response property allOf list for the response status 200

      response-property-all-of-removed

  • e951665c552d1111See the full diff
    • removed the required property fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo/oneOf[subschema #9: Tron Wallet]/allOf[BasePaymentAccountInfo]/accountType from the response with the 200 status

      response-required-property-removed

    • added the optional property fundingPaymentInstructions/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 fundingPaymentInstructions/items/accountOrWalletInfo/oneOf[subschema #10: Polygon Wallet]/allOf[PolygonWalletInfo]/accountType became required for the status 200

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-required

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional

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

      response-property-became-optional