MentorsWithoutBorders / mwb-connect-backend

Apache License 2.0
3 stars 3 forks source link

feat: add mentor details api #63 #33

Closed ManojBahuguna closed 10 months ago

ManojBahuguna commented 10 months ago

Sample request: GET /partners/aac344ee-6cdf-4acd-8e60-609bfbc589b7/mentors/b2e9059b-fb54-41d6-ae28-18162073787a

Sample response:

{
    "id": "b2e9059b-fb54-41d6-ae28-18162073787a",
    "name": "Edmond MWB",
    "email": "edmond@mentorswithoutborders.net",
    "courses": [
        {
            "id": "61836523-40ce-4044-b071-e0e2b3eced09",
            "project": {
                "id": "19ac3dfe-0415-424d-bd5d-c5cacd030619",
                "name": "Project 1"
            },
            "duration": 6,
            "students": [
                {
                    "id": "c9682d5f-a104-4229-b8b1-0ccfef35e5f6",
                    "name": "Student 1",
                    "email": "s1@test.fake",
                    "testimonials": [
                        {
                            "id": "a2c66b0c-4585-4d6e-8b15-b1cfbb0a763b",
                            "url": "https://www.youtube.com/watch?v=Q77ikiTIAS0&t=2s",
                            "user_id": "c9682d5f-a104-4229-b8b1-0ccfef35e5f6",
                            "uploadDate": "2023-07-10T18:18:35.554481+00:00"
                        }
                    ]
                }
            ],
            "completedHours": 16,
            "startDate": "2023-07-02T09:00:00+00:00",
            "canceledDate": null
        }
    ]
}