GET
/
rdc
/
deposits
List Remote Check Deposits
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/rdc/deposits \
  --header 'Authorization: Bearer <token>'
{
  "deposits": [
    {
      "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": "026009593",
      "status": "FAILED",
      "transaction_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
      "vendor_info": {
        "content_type": "application/json",
        "json": {},
        "vendor": "SOCURE"
      },
      "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"
    }
  ],
  "next_page_token": "a8937a0d"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

account_id
string<uuid>

Unique identifier for the account.

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

page_token
string

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

Example:

"a8937a0d"

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

Response

200
application/json

List of deposits made with remote deposit capture

The response is of type object.