About
Type: Read-only
Endpoint:
GET /api/scholarship/get-awarded-students/{awardCycleId}/{scholarshipId}Description: Retrieves awarded student details for a single scholarship within a specified award cycle.
Authentication
- Requires a valid SpringAPI access token
- See Authentication for details
Path Parameters
| Parameter | Type | Required | Description |
| awardCycleId | number | Yes | Unique identifier of the award cycle |
| scholarshipId | number | Yes | Unique identifier of the scholarship |
Success Response
200 OK
[
{
"id": 1,
"name": "AwardSpring Scholarship",
"fundId": "add",
"awardedStudents": [
{
"id": "2134",
"firstName": "Sally",
"lastName": "Stu",
"email": "SallyStu@as.com",
"awardedDate": "2025-12-11T16:24:54.5337425",
"awardedAmount": 10.00
}
]
}
]
Response Structure
Scholarship Object
| Field | Type | Description |
| id | number | Unique identifier of the scholarship |
| name | string | Name of the scholarship |
| fundId | string | null | Associated fund identifier, if applicable |
| awardedStudents | array | List of students awarded under this scholarship |
Awarded Student Object
| Field | Type | Description |
| id | string | Unique identifier of the student |
| firstName | string | Student first name |
| lastName | string | Student last name |
| string | Student email address | |
| awardedDate | string (ISO 8601) | Date the award was issued |
| awardedAmount | number | Award amount granted |
Error Responses
| HTTP Code | Description |
| 400 Bad Request | Invalid or malformed awardCycleId |
| 401 Unauthorized | Missing or invalid API token |
See Error Codes & Responses for full details.
Notes
- All monetary values are returned in USD
- Personally identifiable information (PII) is included in this response
- Results are limited to awards accessible by the API token