Skip to main content
GET
/
rdc
/
deposits
List Remote Check Deposits
curl --request GET \
  --url https://api.synctera.com/v2/rdc/deposits
{
  "deposits": [
    {
      "account_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "back_image_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "business_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "check_amount": 12345,
      "deposit_currency": "USD",
      "front_image_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "metadata": {},
      "person_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "creation_time": "2010-05-06T12:23:34.321Z",
      "date_captured": "2010-05-06T12:23:34.321Z",
      "date_processed": "2010-05-06T12:23:34.321Z",
      "deposit_amount": 12345,
      "id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "ocr_account_number": "123456789",
      "ocr_check_number": "001",
      "ocr_routing_number": 26009593,
      "status": "SUBMITTED",
      "transaction_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "vendor_info": {
        "content_type": "application/json",
        "json": {},
        "vendor": "SOCURE"
      }
    }
  ],
  "next_page_token": "a8937a0d"
}

Query Parameters

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

business_id
string<uuid>
deposit_amount
integer[]
deposit_check_number
string[]
deposit_currency
string[]
from_deposit_amount
integer
id
string<uuid>[]
person_id
string<uuid>
tenant
string[]

The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.

to_deposit_amount
integer

Response

List of deposits made with remote deposit capture

deposits
object[]
required

Array of Remote Check Deposits

next_page_token
string

If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

Example:

"a8937a0d"