curl --request POST \
--url https://api.alpha-1edtech.ai/powerpath/test-assignments/import \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"spreadsheetUrl": "<string>",
"sheet": "<string>"
}
'{
"success": true,
"results": [
{
"assignmentId": "<string>",
"lessonId": "<string>",
"resourceId": "<string>"
}
],
"errors": [
{
"row": 123,
"message": "<string>"
}
]
}Fetches a public Google Sheet tab as CSV and creates test assignments in bulk. Requires columns: student, subject, grade (case-insensitive). Student may be email or ID. All-or-nothing; returns 200 if all succeed, 400 if any errors.
curl --request POST \
--url https://api.alpha-1edtech.ai/powerpath/test-assignments/import \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"spreadsheetUrl": "<string>",
"sheet": "<string>"
}
'{
"success": true,
"results": [
{
"assignmentId": "<string>",
"lessonId": "<string>",
"resourceId": "<string>"
}
],
"errors": [
{
"row": 123,
"message": "<string>"
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.