Acadle API Documentation

Get User Profile

This API can be used to get the profile of a user

URL : https://academy.domain.com/api/v2/user-profile
Method : GET
Request Header : {
    "Content-Type" : "application/json",
    "API-Key" : "Your API Key"
}
Request Body : {
    "email" : "User's email" // Required
}
Response : {
   "status": "success",
   "data": [
       {
           "id": 11,
           "first_name": "",
           "last_name": null,
           "email": "vishnu@acadle.com",
           "phone": null,
           "dial_code": null,
           "company_name": null,
           "designation": null,
           "city": null,
           "state": null,
           "country": "United States",
           "zip": null,
           "employee_id": null,
           "profile_image": null,
           "groups": [
               {
                   "id": 1,
                   "name": "Default"
               },
               {
                   "id": 4,
                   "name": "Test Group 1 Updated"
               }
           ],
           "level": 0,
           "points": 0,
           "badges": [],
           "certificates": []
       }
   ]
}