get
http://{{baseurl}}/assets/groups
This endpoint makes an HTTP GET request to retrieve a list of asset groups from the server. The response will be in JSON format with a status code of 200. An example response for this request is as follows:
{
"status": 0,
"assetGroups": [
{
"id": 0,
"name": ""
}
]
}
The "status" key indicates the status of the request, and the "assetGroups" key contains an array of asset group objects, where each object has an "id" and a "name" attribute.
