The transfers endpoint allows you to initiate and track money movement. You can access transfer details, including the transfer's unique ID, amount, currency, status, schedule, submission and resolution times, fees, and related links to the involved parties.
Functionality Retrieve transfer information, monitor transfer statuses, view transfer schedules, and access relevant links for the source, destination, and origin of the transfer.
Important - Account origin: a user initiated movement of money from one account to another - Paycheck origin: an automatic (system-generated) movement of money as part of payroll
Returns details about a transfer of money from one account to another.
Created when a person takes an advance against a future paycheck, or on a daily basis when available balance is updated based on current employment.
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 newly created transfer object.
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Resource was not found
Unexpected error occured
{- "data": {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210",
- "attributes": {
- "preview": true,
- "amount": 2500,
- "currency": "USD",
- "status": "PENDING",
- "schedule": "WITHIN_THIRTY_MINUTES",
- "submitted_at": "2021-04-21T21:30:58.051Z",
- "resolved_at": "2021-04-21",
- "fee": 0
}, - "relationships": {
- "origin": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "destination": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}, - "estimated_funding_sources": {
- "data": [
- {
- "type": "funding_sources",
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2"
}
]
}, - "final_funding_sources": {
- "data": [
- {
- "type": "funding_sources",
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2"
}
]
}
}
}, - "included": [
- {
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2",
- "type": "funding_sources",
- "attributes": {
- "amount": 2500,
- "currency": "USD"
}, - "relationships": {
- "source": {
- "data": {
- "type": "paychecks",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}, - "transfer": {
- "data": {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210"
}
}
}
}
]
}
Returns a list of transfer objects. See Filtering Transfers for a description of filterable fields.
filter | string Examples: filter=person_id:"aa860051-c411-4709-9685-c1b716df611b" |
include | string Add related resources to the response. The value of the include parameter must be a comma-separated (U+002C COMMA, “,”) list of relationship paths. include=estimated_funding_sources,final_funding_sources |
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" |
A list of transfer objects.
required | Array of objects (TransferResource) | ||||||||||
Array
| |||||||||||
Array of objects (FundingSourceResource) | |||||||||||
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Unexpected error occured
{- "data": [
- {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210",
- "attributes": {
- "preview": true,
- "amount": 2500,
- "currency": "USD",
- "status": "PENDING",
- "schedule": "WITHIN_THIRTY_MINUTES",
- "submitted_at": "2021-04-21T21:30:58.051Z",
- "resolved_at": "2021-04-21",
- "fee": 0
}, - "relationships": {
- "origin": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "destination": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}, - "estimated_funding_sources": {
- "data": [
- {
- "type": "funding_sources",
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2"
}
]
}, - "final_funding_sources": {
- "data": [
- {
- "type": "funding_sources",
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2"
}
]
}
}
}
], - "included": [
- {
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2",
- "type": "funding_sources",
- "attributes": {
- "amount": 2500,
- "currency": "USD"
}, - "relationships": {
- "source": {
- "data": {
- "type": "paychecks",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}, - "transfer": {
- "data": {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210"
}
}
}
}
]
}
Request transfer of funds from an EARNINGS_BALANCE
account to a
personal DEPOSITORY
or CARD
account.
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" |
Idempotency-Key required | string <uuid> An idempotency key that, when included, guarantees a request will only be processed once. When we detect a duplicate request, the response for the duplicate request will be identical to the response of the original request, including the previously returned http status code. |
required | object (TransferCreateResource) | ||||||||||||||||||||||||||
|
Returns the newly created transfer object.
required | object (TransferResource) | ||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (FundingSourceResource) | |||||||||||||||||||||||||||||||||||||||||||||||||||
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Unprocessable entity
Unexpected error occured
{- "data": {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210",
- "attributes": {
- "preview": true,
- "amount": 2500,
- "currency": "USD",
- "schedule": "WITHIN_THIRTY_MINUTES"
}, - "relationships": {
- "origin": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "destination": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}
}
}
}
{- "data": {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210",
- "attributes": {
- "preview": true,
- "amount": 2500,
- "currency": "USD",
- "status": "PENDING",
- "schedule": "WITHIN_THIRTY_MINUTES",
- "submitted_at": "2021-04-21T21:30:58.051Z",
- "resolved_at": "2021-04-21",
- "fee": 0
}, - "relationships": {
- "origin": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "destination": {
- "data": {
- "type": "accounts",
- "id": "2bc7d781-3247-46f6-b60f-4090d214936a"
}
}, - "person": {
- "data": {
- "type": "people",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}, - "estimated_funding_sources": {
- "data": [
- {
- "type": "funding_sources",
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2"
}
]
}, - "final_funding_sources": {
- "data": [
- {
- "type": "funding_sources",
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2"
}
]
}
}
}, - "included": [
- {
- "id": "b5393c00b7c113fc2e5ae3e80c785bb2",
- "type": "funding_sources",
- "attributes": {
- "amount": 2500,
- "currency": "USD"
}, - "relationships": {
- "source": {
- "data": {
- "type": "paychecks",
- "id": "3fa8f64-5717-4562-b3fc-2c963f66afa6"
}
}, - "transfer": {
- "data": {
- "type": "transfers",
- "id": "aba332a2-24a2-46de-8257-5040e71ab210"
}
}
}
}
]
}