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.

7 changes: 7 additions & 0 deletions openapi/components/schemas/common/GbpBeneficiary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,30 @@ properties:
type: string
enum:
- INDIVIDUAL
example: INDIVIDUAL
fullName:
type: string
description: The full name of the beneficiary
example: Jane Smith
birthDate:
type: string
description: The birth date of the beneficiary
example: '1990-01-15'
nationality:
type: string
description: The nationality of the beneficiary
example: GB
email:
type: string
description: The email of the beneficiary
example: jane.smith@example.com
phoneNumber:
type: string
description: The phone number of the beneficiary
example: '+447700900123'
countryOfResidence:
type: string
description: The country of residence of the beneficiary
example: GB
address:
$ref: ./Address.yaml
5 changes: 5 additions & 0 deletions openapi/components/schemas/customers/InternalAccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ required:
- type
- status
- balance
- totalBalance
- fundingPaymentInstructions
- createdAt
- updatedAt
Expand All @@ -22,6 +23,10 @@ properties:
$ref: ./InternalAccountStatus.yaml
balance:
$ref: ../common/CurrencyAmount.yaml
description: The balance available to spend, excluding pending and held funds
totalBalance:
$ref: ../common/CurrencyAmount.yaml
description: The total balance, including pending and held funds
fundingPaymentInstructions:
type: array
description: Payment instructions for funding the account
Expand Down
7 changes: 7 additions & 0 deletions openapi/paths/internal_accounts/internal_accounts_{id}.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@ patch:
name: United States Dollar
symbol: $
decimals: 2
totalBalance:
amount: 12550
currency:
code: USD
name: United States Dollar
symbol: $
decimals: 2
fundingPaymentInstructions: []
privateEnabled: true
createdAt: '2026-04-08T15:30:00Z'
Expand Down
14 changes: 14 additions & 0 deletions openapi/webhooks/internal-account-status.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ post:
name: United States Dollar
symbol: $
decimals: 2
totalBalance:
amount: 12500
currency:
code: USD
name: United States Dollar
symbol: $
decimals: 2
fundingPaymentInstructions: []
createdAt: '2025-08-01T10:00:00Z'
updatedAt: '2025-08-15T14:32:00Z'
Expand All @@ -90,6 +97,13 @@ post:
name: United States Dollar
symbol: $
decimals: 2
totalBalance:
amount: 10000
currency:
code: USD
name: United States Dollar
symbol: $
decimals: 2
fundingPaymentInstructions: []
createdAt: '2025-08-01T10:00:00Z'
updatedAt: '2025-08-15T14:32:00Z'
Expand Down
Loading