POST  ***http://3.27.61.194:8082/api/login***

{
    "username":"[email protected]",
    "password":"Visal_2023@"
}
 
{
    "token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ2aXNoYWxAZ21haWwuY29tIiwiZXhwIjoxNjc4NTQ2NTkzLCJpYXQiOjE2Nzg1Mjg1OTN9.zi3_XkfJ0oUrkK44vXxneavsDp5bFOUBx_ErfqOlb4LHXrdDgTGiP7qSrCOnp2rQhncMwt65Ape1ctNhdZ5qSw",
    "user": {
        "id": 57,
        "name": "Vishal Singh",
        "email": "[email protected]",
        "batch": null,
        "section": null,
        "roles": [
            {
                "id": 501,
                "name": "ADMIN_USER"
            }
        ]
    }
}
{
    "token": "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJzaXZhQGdtYWlsLmNvbSIsImV4cCI6MTY3ODU0NTg4NCwiaWF0IjoxNjc4NTI3ODg0fQ.X9rKBQCTqv3VzTCxiADTIOe1pWf6BFgCr9RR50og9XyhMW9HKBW7_tV_hYhGWXx3VldzEizAJR7DQ4E0CAv8SA",
    "user": {
        "id": 58,
        "name": "Siva Gurubilli",
        "email": "[email protected]",
        "batch": {
            "batchId": 2,
            "batch": "FT-WEB-26",
            "status": "A"
        },
        "section": {
            "sectionId": 3,
            "section": "DSA101",
            "status": "A"
        },
        "roles": [
            {
                "id": 502,
                "name": "STUDENT_USER"
            }
        ]
    }
}

POST ***http://3.27.61.194:8082/api/signup/student/{batchId}/{sectionId}*** : to register Students.

{   
    "name":"Vishal Singh",
    "email":"[email protected]",
    "password":"Visal_2023@"
}
{
    "id": 32,
    "name": "Vishal_Singh",
    "email": "[email protected]",
    "batch": {
        "id": 2,
        "batchName": "FW-18"
    },
    "section": {
        "id": 1,
        "sectionsName": "JS-101"
    },
    "roles": [
        {
            "id": 502,
            "name": "STUDENT_USER"
        }
    ]
}

POST   ***http://3.27.61.194:8082/api/signup/admin***  : for Admin Signup

{   
    "name":"Amol Holani",
    "email":"[email protected]",
    "password":"12345678"
}
{
    "id": 59,
    "name": "Amol Holani",
    "email": "[email protected]",
    "batch": null,
    "section": null,
    "roles": [
        {
            "id": 501,
            "name": "ADMIN_USER"
        }
    ]
}

GET : http://3.27.61.194:8082/api/users/adminlist

[
    {
        "id": 1,
        "name": "Vishal Singh",
        "email": "[email protected]",
        "batch": null,
        "section": null,
        "roles": [
            {
                "id": 501,
                "name": "ADMIN_USER"
            }
        ]
    },
    {
        "id": 2,
        "name": "Tridip Rong",
        "email": "[email protected]",
        "batch": null,
        "section": null,
        "roles": [
            {
                "id": 501,
                "name": "ADMIN_USER"
            }
        ]
    },
    {
        "id": 57,
        "name": "Vishal Singh",
        "email": "[email protected]",
        "batch": null,
        "section": null,
        "roles": [
            {
                "id": 501,
                "name": "ADMIN_USER"
            }
        ]
    },
    {
        "id": 59,
        "name": "Amol Holani",
        "email": "[email protected]",
        "batch": null,
        "section": null,
        "roles": [
            {
                "id": 501,
                "name": "ADMIN_USER"
            }
        ]
    }
]

GET : [http://3.27.61.194:8082/api/dashboard/lectures/{batchId}/{sectionId](http://3.27.61.194:8082/api/dashboard/lectures/{batchId}/{sectionId)}

[
    {
        "lectureId": 47,
        "title": "Html advance",
        "category": "Coding",
        "batch": "FT-WEB-26",
        "section": "JS201",
        "type": "Live",
        "schedule": "2023-03-11 15:00:00",
        "concludes": "2023-03-11 17:30:00",
        "tags": [
            "html"
        ],
        "createdBy": "Vishal Singh",
        "updatedBy": null,
        "hideVideo": false,
        "optional": false,
        "zoomLink": "<https://zoom.us/j/1234567890?pwd=xxxxxxxxxxxx>",
        "day": "friday",
        "week": "Week 1",
        "notes": "",
        "video": null,
        "copyLectureFrom": null
    },
    {
        "lectureId": 50,
        "title": "scrum",
        "category": "Scrum",
        "batch": "FT-WEB-26",
        "section": "JS201",
        "type": "Live",
        "schedule": "2023-03-11 15:00:00",
        "concludes": "2023-03-11 17:30:00",
        "tags": [
            "others"
        ],
        "createdBy": "Tridip Rong",
        "updatedBy": null,
        "hideVideo": false,
        "optional": false,
        "zoomLink": "<https://us06web.zoom.us/j/82270308282>",
        "day": "saturday",
        "week": "Week 1",
        "notes": "",
        "video": null,
        "copyLectureFrom": null
    }
]