-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInternalAccount.yaml
More file actions
37 lines (36 loc) · 1.05 KB
/
InternalAccount.yaml
File metadata and controls
37 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
type: object
required:
- id
- status
- balance
- fundingPaymentInstructions
- createdAt
- updatedAt
properties:
id:
type: string
description: The ID of the internal account
example: InternalAccount:12dcbd6-dced-4ec4-b756-3c3a9ea3d123
status:
$ref: ./InternalAccountStatus.yaml
customerId:
type: string
description: The ID of the customer associated with the internal account. If this field is empty, the internal account belongs to the platform.
example: Customer:019542f5-b3e7-1d02-0000-000000000001
balance:
$ref: ../common/CurrencyAmount.yaml
fundingPaymentInstructions:
type: array
description: Payment instructions for funding the account
items:
$ref: ../common/PaymentInstructions.yaml
createdAt:
type: string
format: date-time
description: Timestamp when the internal account was created
example: 2025-10-03T12:30:00Z
updatedAt:
type: string
format: date-time
description: Timestamp when the internal account was last updated
example: 2025-10-03T12:30:00Z