CINC API

Aged Balances

Allows you to get information about Aged Balances.

Currently allowing the following protocols:

  • GET ONLY

Request URL

GET End Point

https://yourcustomerdatabase.cincsys.com/api/management/{mgmtId}/AgedBalances

Parameter Descriptions

* mgmtId (Management Id): Pass your management ID.

Paramter Types

* mgmtId: string

Response Body

The response object:

{
"txtAssocCode": string,
"TotalBalance": decimall,
"CurentBalance": decimall,
"ThirtyDayBalance": decimall,
"SixtyDayBalance": decimall,
"NinetyDayBalance": decimall,
"txtPropertyFName": string,
"txtPropertyLName": string,
"txtPropertyAddress1": string,
"txtPropertyAddress2": string,
"txtPropertyCity": string,
"txtPropertyState": string,
"zipPropertyZip": string
}

The following shows example data being returned

[
{
"txtAssocCode": "00000",
"TotalBalance": 300,
"CurentBalance": 0,
"ThirtyDayBalance": 0,
"SixtyDayBalance": 0,
"NinetyDayBalance": 300,
"txtPropertyFName": "Adam R.",
"txtPropertyLName": "Paiz",
"txtPropertyAddress1": "Lady Liberty Lane",
"txtPropertyAddress2": "",
"txtPropertyCity": "Charlotte",
"txtPropertyState": "NC",
"zipPropertyZip": "28217"
},,
{
"txtAssocCode": "00000",
"TotalBalance": 144,
"CurentBalance": 0,
"ThirtyDayBalance": 0,
"SixtyDayBalance": 0,
"NinetyDayBalance": 144,
"txtPropertyFName": "Adam R.",
"txtPropertyLName": "Paiz",
"txtPropertyAddress1": "Lady Liberty Lane",
"txtPropertyAddress2": "",
"txtPropertyCity": "Charlotte",
"txtPropertyState": "NC",
"zipPropertyZip": "28217"
}
]

Response Codes

200 - OK: Everything worked as expected.

400 - Bad Request: The request was unacceptable, often due to missing a required parameter.

401 - Unauthorized: No valid API key provided.

402 - Request Failed: The parameters were valid but the request failed.

403 - Forbidden: The API key does not have permission to perform the request.

404 - Not Found: The requested resource does not exist.