Skip to content
Open
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
13 changes: 13 additions & 0 deletions mintlify/openapi.yaml

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

13 changes: 13 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
Expand Up @@ -22,6 +22,8 @@ allOf:
type: string
description: Optional platform-specific identifier for this account
example: acc_123456789
ownershipType:
$ref: ./OwnershipType.yaml
currency:
type: string
description: The ISO 4217 currency code
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ allOf:
type: string
description: Your platform's identifier for the account in your system. This can be used to reference the account by your own identifier.
example: ext_acc_123456
ownershipType:
$ref: ./OwnershipType.yaml
defaultUmaDepositAccount:
type: boolean
description: >-
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
type: string
enum:
- FIRST_PARTY
- THIRD_PARTY
description: >-
Whether the external account belongs to the customer themselves (first party)
or to someone else (third party)
example: FIRST_PARTY
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ properties:
type: string
description: Your platform's identifier for the account in your system. This can be used to reference the account by your own identifier.
example: ext_acc_123456
ownershipType:
$ref: ./OwnershipType.yaml
accountInfo:
$ref: ./ExternalAccountCreateInfoOneOf.yaml
Loading