API 1 - Courses API
Professor Applebaum's Courses API (1.0.0)
Download OpenAPI specification:Download
getApiUser
Authorizations:
default
header Parameters
Authorization | string Example: Bearer {YOUR_AUTH_KEY} |
Content-Type | string Example: application/json |
Accept | string Example: application/json |
Responses
Response samples
- 200
Content type
application/json
{- "id": 1,
- "name": "Ian Tyler Applebaum",
- "email": "ian.tyler@electricbluefish.com",
- "email_verified_at": null,
- "two_factor_confirmed_at": null,
- "current_team_id": null,
- "profile_photo_path": null,
- "created_at": "2022-12-31T05:15:55.000000Z",
- "updated_at": "2022-12-31T05:15:55.000000Z",
}
Display a listing of the resource.
// * @return \Illuminate\Http\Response
Authorizations:
default
header Parameters
Authorization | string Example: Bearer {YOUR_AUTH_KEY} |
Content-Type | string Example: application/json |
Accept | string Example: application/json |
Responses
Response samples
- 200
Content type
application/json
{- "result": "ok",
- "syllabi": [
- {
- "id": 1,
- "course_name": "Projects in Computer Science",
- "course_semester": "Spring",
- "course_year": "2023",
- "start_date": "2023-01-17",
- "end_date": "2023-05-09",
- "created_at": "2022-12-31T05:16:39.000000Z",
- "updated_at": "2022-12-31T05:16:39.000000Z",
- "discord_channel": "1060282877230723077"
}, - {
- "id": 2,
- "course_name": "CIS Projcts in Computer Science",
- "course_semester": "Spring",
- "course_year": "1999",
- "start_date": "2004-11-07",
- "end_date": "2007-08-16",
- "created_at": "2023-01-05T04:32:32.000000Z",
- "updated_at": "2023-01-05T04:32:32.000000Z",
- "discord_channel": null
}
]
}