Acadle API Documentation

List Groups

This API can be used to get all the access groups in the academy.

URL : https://academy.domain.com/api/v2/group/list
Method : GET
Request Header : {
   "Content-Type" : "application/json",
   "API-Key" : "Your API Key"
}
Response : {
   "status": "success",
   "data": [
       {
           "id": 1,
           "name": "Default",
           "status": "active",
           "default": "yes",
           "ref_id": null
       },
       {
           "id": 4,
           "name": "Test Group 1 Updated",
           "status": "active",
           "default": "no",
           "ref_id": null
       }
   ]
}