List Internship Periods
Endpoint GET https://hipolabs.com/api/internship-periods/
Response - HTTP - 200 OK
[
{
"id": <integer>,
"name": "string",
"positions": [
{
"id": <integer>,
"name": "string"
},
{
"id": <integer>,
"name": "string"
}
],
"start_date": "string",
"end_date": "string",
"last_application_date": "string",
"location": "string"
}
]
Example Response
[
{
"id": 5,
"name": "Early Summer",
"positions": [
{
"id": 2,
"name": "Frontend"
},
{
"id": 1,
"name": "Backend"
}
],
"start_date": "2004-06-05",
"end_date": "2004-07-15",
"last_application_date": "2004-05-15",
"location": "istanbul"
}
]