public.deposits
Get Deposit
Retrieves a single funding account deposit by ID for the authenticated merchant. When a developer fee is configured, the response shows the merchant developer fee and the customer amount separately from Daya fees.
get/v1/deposits/{id}
Path parameters
idstring required
Deposit ID (UUID format)
Response
OK
Example response
{
"customer_amount": {
"amount": "98.5000",
"currency": "USD"
},
"developer_fee": {
"amount": "1.5000",
"currency": "USD",
"percentage": "1.5"
},
"sender": {
"account_number": "****1234",
"bank_name": "Chase",
"name": "Jane Doe"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.