List all Asset Holders

List all organization asset holders

Get all organizational Asset holders

GET https://<baseurl>/v1/organization/assetholder/list/@clientUUID

Path Parameters

Name
Type
Description

clientUUID

string

Client UUID

Headers

Name
Type
Description

Authentication

string

Authentication token

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

{
    "message": "success",
    "status": 200,
    "assetholders": [
        {
            "id": 574,
            "uuid": "3a657363-e1d2-4e64-b3a8-92d5a610a20f",
            "name": "Asset Holder 1",
            "emailID": "assetholder1@mail.com",
            "mobile": "1234567890",
            "departmentName": "department",
            "subdepartmentName": "SBD1"
        },
        {
            "id": 575,
            "uuid": "8e64d1e9-38a8-4fbd-a2d8-591cad1d9557",
            "name": "Asset Holder 2",
            "emailID": "assetholder2@mail.com",
            "mobile": "1234567891",
            "departmentName": "department",
            "subdepartmentName": "SBD1"
        },
        {
            "id": 576,
            "uuid": "4b6228ae-c45a-4e55-b4f4-7a5665a8cce8",
            "name": "Asset Holder 3",
            "emailID": "assetholder3@mail.com",
            "mobile": "1234567892",
            "departmentName": "department",
            "subdepartmentName": "SBD1"
        },
     ]
}


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

Last updated