Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions mintlify/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
type: string
enum:
- MATCHED
- PARTIAL_MATCH
- NOT_MATCHED
- UNSUPPORTED
- CHECKED_BY_RECEIVING_FI
- PENDING
description: |
The result of verifying the beneficiary name against the account holder name.

| Status | Description |
|--------|-------------|
| `MATCHED` | The beneficiary name is an exact match |
| `PARTIAL_MATCH` | The beneficiary name is a fuzzy match |
| `NOT_MATCHED` | The beneficiary name does not match |
| `UNSUPPORTED` | The payment rail does not support name verification |
| `CHECKED_BY_RECEIVING_FI` | Verification is deferred to the receiving financial institution (e.g. ACH) |
| `PENDING` | Verification is still in progress |
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type: object
properties:
fullName:
type: string
description: The verified full name of the account holder as returned by the payment rail
example: John Doe
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,11 @@ allOf:
False if not provided. Note that at most, one external account can be set as the default UMA deposit account for a customer.
If there is no default UMA deposit account, incoming UMA payments will be deposited into the primary internal account for the customer.
example: false
beneficiaryVerificationStatus:
$ref: ./BeneficiaryVerificationStatus.yaml
description: The result of verifying the beneficiary name against the account holder name
beneficiaryVerifiedData:
$ref: ./BeneficiaryVerifiedData.yaml
description: Verified beneficiary data returned by the payment rail, if available
accountInfo:
$ref: ./ExternalAccountInfoOneOf.yaml