List all Asset Categories

List all Asset Categories

Get all asset categories

GET https://<baseurl>/v1/organization/categories/@clientUUID

Path Parameters

Name
Type
Description

clientUUID

string

Client UUID

Headers

Name
Type
Description

Authentication

string

Authentication token

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

{
    "message": "success",
    "status": 200,
    "categories": [
        {
            "uuid": "d580fb6d-af25-4825-ac3e-f4f8c2cc0cf9",
            "categoryName": "Video equipment",
            "id": 3
        },
        {
            "uuid": "14f03f51-7aca-40d7-9850-72f0e3113b5f",
            "categoryName": "category4",
            "id": 4
        },
     ]
}


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





Last updated