Account Receivable Aging [GET]

Operation

This endpoint will give as a result the collection of Account Receivables and the amount that is due to on different periods.

GET
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/propertyManagement/accountReceivableAging


Request


PropertyTypeRequiredType parameterDefault valueDescription
chainIdIntegertruepath parameter
Unique identificator of the chain.
propertyIdIntegertruepath parameter
property identificator.
datedatefalsepath parameter

Example request

GET https://publicapi-providers.ulysescloud.com/public/api/v1/con/chain/1/property/2/propertyManagement/accountReceivableAging?date=2020-11-12


Response

Entity


FieldTypeRequiredDescription
accountReceivableAccountReceivable

accountReceivableLimitDueDayInteger

accountReceivableLimitAmountBigDecimal

days0to30TotalBigDecimal

days30to60TotalBigDecimal

days60to90TotalBigDecimal

days90to120TotalBigDecimal

daysGreaterThan120TotalBigDecimal

totalBigDecimal

Example response

[
    {
        "accountReceivableCONModel": {
            "id": 11,
            "code": "AM",
            "name": "American Express"
        },
        "accountReceivableLimitDueDay": 30,
        "accountReceivableLimitAmount": null,
        "days0to30Total": 1490.200000,
        "days30to60Total": 0.000000,
        "days60to90Total": 0.000000,
        "days90to120Total": 0.000000,
        "daysGreaterThan120Total": 0.000000,
        "total": 1490.200000
    }
]