List all Depreciation Profile

List all depreciation profile

Get all depreciation profile

GET https://<baseurl> /v1/organization/depreciation/profile/@clientUUID

Path Parameters

Name
Type
Description

clientUUID

string

Client UUID

Headers

Name
Type
Description

Authentication

string

Authentication token

#########################################################################
## success
#########################################################################

{
    "message": "success",
    "status": 200,
    "depreciationProfile": [
        {
            "id": 1,
            "uuid": "0785b93c-9736-4a0e-a08f-658289792772",
            "profileName": "test",
            "clientUUID": "4b2bce80-6c83-477c-8edf-36409e9c7657",
            "profileLife": 2,
            "acceleratedType": "ADD",
            "profileType": "StraightLine",
            "profilePeriod": "Monthly",
            "ts": null
        },
        {
            "id": 2,
            "uuid": "daa08b8f-98b1-4d84-a8bc-9d420fd58bec",
            "profileName": "yearly profile",
            "clientUUID": "4b2bce80-6c83-477c-8edf-36409e9c7657",
            "profileLife": 2,
            "acceleratedType": "ADD",
            "profileType": "StraightLine",
            "profilePeriod": "Yearly",
            "ts": null
        }
    ]
}

#########################################################################
## Error:No data found
#########################################################################
            
{
	"message": "error",
	"status": 400,
	"description": "No data found"
}

Last updated