The accounts endpoint provides comprehensive information about money accounts. You can retrieve account details, including the account's unique ID, a link to the account holder, type, subtype, verification status, balance details, transfer capabilities, and user-specific information such as names, routing numbers, and partial account numbers.
Functionality: Access detailed user account information, verify account balances, view transfer capabilities, and access user-specific details associated with each account.
Returns details about an account. This object represents a person's bank accounts, debit and pay cards, and earnings balance accounts.
DailyPay-API-Version | integer Default: 3 The version of the DailyPay API to use for this request. If not provided, the latest version of the API will be used. Example: 3 |
Accept required | string The media type of the requested payload. This should be set to Value: "application/vnd.api+json" |
Returns the account object.
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Resource was not found
Unexpected error occured
{- "data": {
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a",
- "type": "accounts",
- "attributes": {
- "verification_status": "VERIFIED",
- "balances": {
- "available": 12000,
- "current": 50000,
- "currency": "USD"
}, - "capabilities": {
- "transfer_destination": [
- {
- "schedule": "WITHIN_THIRTY_MINUTES",
- "fee": 300,
- "currency": "USD"
}, - {
- "schedule": "NEXT_BUSINESS_DAY",
- "fee": 0,
- "currency": "USD"
}
]
}, - "name": "Debit Card",
- "account_type": "CARD",
- "subtype": "DEBIT",
- "details": {
- "first_name": "Edith",
- "last_name": "Clarke",
- "expiration_month": "02",
- "expiration_year": "2025",
- "last_four": "0003",
- "issuer": "411600"
}
}, - "relationships": {
- "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}
}
}
}
Returns a list of account objects. An account object represents a person's bank accounts, debit and pay cards, and earnings balance accounts. See Filtering Accounts for a description of filterable fields.
DailyPay-API-Version | integer Default: 3 The version of the DailyPay API to use for this request. If not provided, the latest version of the API will be used. Example: 3 |
Accept required | string The media type of the requested payload. This should be set to Value: "application/vnd.api+json" |
Returns the account object.
required | Array of objects (AccountResource) | ||||||||||
Array
|
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Unexpected error occured
{- "data": [
- {
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a",
- "type": "accounts",
- "attributes": {
- "verification_status": "VERIFIED",
- "balances": {
- "available": 12000,
- "current": 50000,
- "currency": "USD"
}, - "capabilities": {
- "transfer_destination": [
- {
- "schedule": "WITHIN_THIRTY_MINUTES",
- "fee": 300,
- "currency": "USD"
}, - {
- "schedule": "NEXT_BUSINESS_DAY",
- "fee": 0,
- "currency": "USD"
}
]
}, - "name": "Debit Card",
- "account_type": "CARD",
- "subtype": "DEBIT",
- "details": {
- "first_name": "Edith",
- "last_name": "Clarke",
- "expiration_month": "02",
- "expiration_year": "2025",
- "last_four": "0003",
- "issuer": "411600"
}
}, - "relationships": {
- "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}
}
}
]
}
Create an account object to store a person's bank or card information as a destination for funds.
DailyPay-API-Version | integer Default: 3 The version of the DailyPay API to use for this request. If not provided, the latest version of the API will be used. Example: 3 |
Accept required | string The media type of the requested payload. This should be set to Value: "application/vnd.api+json" |
required | object (AccountResource) | ||||||||||||||||||||
|
Returns the account object.
required | object (AccountResource) | ||||||||||||||||||||||||||||||||
|
Invalid authentication credentials
Not authorized to perform this operation
Unprocessable entity
Unexpected error occured
{- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a",
- "attributes": {
- "name": "Acme Bank Checking Account",
- "account_type": "DEPOSITORY",
- "subtype": "CHECKING",
- "details": {
- "first_name": "Edith",
- "last_name": "Clarke",
- "routing_number": "XXXXX2021",
- "account_number": "XXXXXX4321"
}
}, - "relationships": {
- "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}
}
}
}
{- "data": {
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a",
- "type": "accounts",
- "attributes": {
- "verification_status": "VERIFIED",
- "balances": {
- "available": 12000,
- "current": 50000,
- "currency": "USD"
}, - "capabilities": {
- "transfer_destination": [
- {
- "schedule": "WITHIN_THIRTY_MINUTES",
- "fee": 300,
- "currency": "USD"
}, - {
- "schedule": "NEXT_BUSINESS_DAY",
- "fee": 0,
- "currency": "USD"
}
]
}, - "name": "Debit Card",
- "account_type": "CARD",
- "subtype": "DEBIT",
- "details": {
- "first_name": "Edith",
- "last_name": "Clarke",
- "expiration_month": "02",
- "expiration_year": "2025",
- "last_four": "0003",
- "issuer": "411600"
}
}, - "relationships": {
- "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}
}
}
}