DadeCore API allows RESTful access to account data inside DadeCore. All calls will return data in JSON format.
All requests to the API require authentication via simple access token which must be included in the HTTP request as a param named access_token.
Retrieves accounts matching the provided parameters.
- name
- address_line_1
- address_line_2 (optional)
- city
- state
- zip
[
{
"id": 223,
"external_key": "7331406508",
"address_line_1": "26315 Rohan Estates",
"address_line_2": "Apt. 858",
"city": "Queens",
"state": "New York",
"zip": "72618-0666",
"full_address": "26315 Rohan Estates Apt. 858 Queens New York 72618-0666",
"payer": {
"id": 96,
"name": "Dr. Dorothy Cummerata"
},
"biller": {
"id": 2,
"name": "Green Property Management" },
"group": {
"id": 4,
"name": "Ice House Condos",
"external_key": "0005"
}
}
]Retrieves payers matching the provided parameters.
- name
- account_number (optional)
- biller_id (optional)
[
{
"id": 123,
"name": "John Smith",
"receivable_accounts": [
{
"id":12,
"external_key": "481815583"
}
]
}
]Retrieves billers matching the provided parameters.
- name
[
{
"id": 12,
"name": "Green Property Management",
"external_key": "481815583"
}
]Retrieves banks accounts for the provided receivable account(s).
- receivable_account_id (single id or JSON array of ids, ex:
[196, 197])
[
{
"receivable_account_id": 196,
"bank_account": {
"id": 6,
"name": "Demo Account",
"routing_number": "444223469",
"account_number": "1483050006"
}
}
]Retrieves splits/payment data for the provided biller.
api/billers/7/splits/?batches.batch_scope=
&batches.batch_type=
&payment_type=
&validation_type=manual
&batches.id=
&splits.payment_id=
&date_posted=02/22/2018 - 02/10/2018
&payers.name=
&receivable_accounts.external_key=
&receivable_accounts.account_type=
&receivable_accounts.external_code=
&checks.check_num=
{
"splits": [
{
"payment_id": 83,
"amount": "174.78",
"receivable_account": {
"external_key": "67843",
"external_code": "0",
"account_type": "Default"
},
"post": {
"date_posted": "2018-01-31T22:31:22.496Z"
},
"checks": [
{
"id": 87,
"check_num": "70"
}
],
"batch": {
"id": 9
},
"payer": {
"id": 880,
"name": "Miami Dade County",
"alternate_name": null
}
}
],
"meta": {
"total": 1,
"page_length": 1,
"next_page": null,
"previous_page": null
}
}